trainer buildings get 3 slots at r1

This commit is contained in:
2024-09-01 20:20:37 -05:00
parent 00afe27900
commit 9e27c69906
+13 -1
View File
@@ -311,8 +311,20 @@ public class Blueprint {
if (currentRank == 0)
return 0;
// Early exit for buildings with single or no slots
switch(this.buildingGroup){
case CATHEDRAL:
case ELVENHALL:
case ELVENSANCTUM:
case FORESTHALL:
case IREKEIHALL:
case TEMPLEHALL:
case THIEFHALL:
case WIZARDHALL:
return 3;
}
// Early exit for buildings with single or no slots
if (this.maxSlots <= 1 && !this.buildingGroup.equals(BuildingGroup.TOL))
return maxSlots;