extra ToL slots

This commit is contained in:
2024-06-23 19:50:20 -05:00
parent 5158329785
commit 2e3e9ee882
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -540,7 +540,7 @@ public enum BuildingManager {
int maxSlots = building.getBlueprint().getMaxSlots();
if(building.getBlueprint().getBuildingGroup() != null) {
building.getBlueprint().getSlotsForRank(building.getRank());
maxSlots = building.getBlueprint().getSlotsForRank(building.getRank());
}
if (maxSlots == building.getHirelings().size())
+1 -1
View File
@@ -313,7 +313,7 @@ public class Blueprint {
// Early exit for buildings with single or no slots
if (this.maxSlots <= 1)
if (this.maxSlots <= 1 && !this.buildingGroup.equals(BuildingGroup.TOL))
return maxSlots;
if (this.maxRank == 1 && currentRank == 1)