Fixed issue with determining a valid location.

This commit is contained in:
Cekis
2018-03-23 16:03:01 -07:00
committed by CekisSWG
parent 5bf67c75d5
commit b8187b7b5f
9 changed files with 16 additions and 11 deletions
@@ -449,7 +449,7 @@ public class beast extends script.base_script
if (isIdValid(master))
{
location masterLoc = getLocation(master);
if(isValidLocation(masterLoc, 1.0f))
if(isValidLocation(masterLoc))
setHomeLocation(self, masterLoc);
}
return SCRIPT_CONTINUE;