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
@@ -6686,7 +6686,7 @@ public class utils extends script.base_script
location testLoc;
for (obj_id obj : allObjects) {
testLoc = getLocation(trial.getTop(obj));
if(testLoc == null || !isValidLocation(testLoc, 1f)){
if(testLoc == null || !isValidLocation(testLoc)){
continue;
}
if (testLoc.x < x1 || testLoc.x > x2 || testLoc.z < z1 || testLoc.z > z2) {