Building Location rotations are now a quaternion.

This commit is contained in:
2023-05-02 09:10:41 -04:00
parent e745c260f0
commit 715abf1444
5 changed files with 36 additions and 64 deletions
+1 -1
View File
@@ -1285,7 +1285,7 @@ public class Building extends AbstractWorldObject {
stuckLocations.isEmpty())
return this.getLoc();
stuckLocation = stuckLocations.get(ThreadLocalRandom.current().nextInt(stuckLocations.size())).getLoc();
stuckLocation = stuckLocations.get(ThreadLocalRandom.current().nextInt(stuckLocations.size())).getLocation();
return stuckLocation;
}