Corner trebs go into slot 1.

This commit is contained in:
2023-04-05 18:32:03 -04:00
parent 55fc6a68e1
commit fc6f400e09
2 changed files with 5 additions and 7 deletions
-7
View File
@@ -139,7 +139,6 @@ public class Mob extends AbstractIntelligenceAgent {
if (this.contract != null)
this.level = 10;
//initializeMob(false, false);
clearStatic();
}
@@ -1916,12 +1915,6 @@ public class Mob extends AbstractIntelligenceAgent {
int count = 0;
// if Arty Tower then the slot will always be 1
if (building.getBlueprint() != null &&
building.getBlueprint().getBuildingGroup().equals(BuildingGroup.ARTYTOWER))
putSlot = 1;
for (BuildingLocation slotLoc : buildingModel.getLocations())
if (slotLoc.getType() == 6)
count++;
+5
View File
@@ -1451,6 +1451,11 @@ public class NPC extends AbstractCharacter {
else if (!siegeMinionMap.containsValue(2))
slot = 2;
// Corner trebs always are slot 1
if (this.building.getBlueprint().getBuildingGroup().equals(BuildingGroup.ARTYTOWER))
slot = 1;
siegeMinionMap.put(mob, slot);
mob.setInBuildingLoc(this.building, this);