Browse Source

trainer buildings get 3 slots at r1

lakebane-strongholds
FatBoy-DOTC 2 months ago
parent
commit
9e27c69906
  1. 14
      src/engine/objects/Blueprint.java

14
src/engine/objects/Blueprint.java

@ -311,8 +311,20 @@ public class Blueprint { @@ -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;

Loading…
Cancel
Save