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
@@ -37,7 +37,7 @@ public class SlotTestCmd extends AbstractDevCmd {
Building building = (Building)target;
for (BuildingLocation buildingLocation : BuildingManager._slotLocations.get(building.meshUUID))
outString += buildingLocation.getSlot() + buildingLocation.getLoc().toString() + "\r\n";
outString += buildingLocation.getSlot() + buildingLocation.getLocation().toString() + "\r\n";
outString += "\r\nNeext Available Slot: " + BuildingManager.getAvailableSlot(building);