Raised visibility of collection
This commit is contained in:
@@ -65,13 +65,13 @@ public class SlotTestCmd extends AbstractDevCmd {
|
||||
|
||||
outString += "\r\nNext Available Slot: " + BuildingManager.getAvailableSlot(building);
|
||||
|
||||
if (building.getHirelings().isEmpty() == false) {
|
||||
if (building.hirelings.isEmpty() == false) {
|
||||
|
||||
outString += "\r\n\r\n";
|
||||
outString += "Hirelings List:";
|
||||
|
||||
for (AbstractCharacter hireling : building.getHirelings().keySet())
|
||||
outString += "\r\n" + hireling.getName() + " slot : " + building.getHirelings().get(hireling);
|
||||
for (AbstractCharacter hireling : building.hirelings.keySet())
|
||||
outString += "\r\n" + hireling.getName() + " slot : " + building.hirelings.get(hireling);
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user