slot NPC fix

This commit is contained in:
2024-03-05 20:32:09 -06:00
parent 35e18e4186
commit cd900d6e2e
3 changed files with 6 additions and 38 deletions
+4 -5
View File
@@ -181,9 +181,6 @@ public class Blueprint {
public int getMaxSlots() {
if (this.buildingGroup != null && this.buildingGroup.equals(BuildingGroup.BARRACK))
return 1;
if (this.buildingGroup != null && this.buildingGroup.equals(BuildingGroup.TOL)){
return 4;
}
return maxSlots;
}
@@ -319,7 +316,7 @@ public class Blueprint {
if (this.maxSlots <= 1 && this.buildingGroup.equals(BuildingGroup.TOL) == false)
return maxSlots;
if (this.maxRank == 1 && currentRank == 1 && this.buildingGroup.equals(BuildingGroup.TOL) == false)
if (this.maxRank == 1 && currentRank == 1&& this.buildingGroup.equals(BuildingGroup.TOL) == false)
return getMaxSlots();
switch (currentRank) {
@@ -335,11 +332,13 @@ public class Blueprint {
break;
case 6:
case 7:
availableSlots = 3;
break;
case 8:
availableSlots = 3;
break;
default:
availableSlots = 1;
availableSlots = 0;
break;
}
if(this.buildingGroup.equals(BuildingGroup.TOL)){