Dev command updated to reflect index slotting.

This commit is contained in:
2024-02-04 13:35:40 -05:00
parent ce8dc09a95
commit 0c5facaefc
+1 -1
View File
@@ -61,7 +61,7 @@ public class SlotTestCmd extends AbstractDevCmd {
} }
for (BuildingLocation buildingLocation : BuildingManager._slotLocations.get(building.meshUUID)) for (BuildingLocation buildingLocation : BuildingManager._slotLocations.get(building.meshUUID))
outString += buildingLocation.getSlot() + buildingLocation.getLocation().toString() + "\r\n"; outString += buildingLocation.getSlot() - 1 + buildingLocation.getLocation().toString() + "\r\n";
outString += "\r\nNext Available Slot: " + BuildingManager.getAvailableSlot(building); outString += "\r\nNext Available Slot: " + BuildingManager.getAvailableSlot(building);