From 9e27c69906c53518dadf7905771e388ceff7c38d Mon Sep 17 00:00:00 2001 From: FatBoy-DOTC Date: Sun, 1 Sep 2024 20:20:37 -0500 Subject: [PATCH] trainer buildings get 3 slots at r1 --- src/engine/objects/Blueprint.java | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/engine/objects/Blueprint.java b/src/engine/objects/Blueprint.java index ef819db8..6e070fbf 100644 --- a/src/engine/objects/Blueprint.java +++ b/src/engine/objects/Blueprint.java @@ -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;