Typo in help string fixed.

This commit is contained in:
2023-08-11 07:47:23 -04:00
parent bafb48fe14
commit 049562af5c
+1 -2
View File
@@ -60,7 +60,6 @@ public class SlotTestCmd extends AbstractDevCmd {
return; return;
} }
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() + buildingLocation.getLocation().toString() + "\r\n";
@@ -87,7 +86,7 @@ public class SlotTestCmd extends AbstractDevCmd {
@Override @Override
protected String _getUsageString() { protected String _getUsageString() {
return "./slottest <target builing> n"; return "./slottest <target building> n";
} }