Compare commits

..

2 Commits

Author SHA1 Message Date
MagicBot 14a06410ae Update to slotting logic. 2023-08-27 21:25:43 -04:00
MagicBot 85c2a4f4f0 Add all as hirelings 2023-08-27 21:20:00 -04:00
+2 -1
View File
@@ -352,7 +352,8 @@ public enum NPCManager {
// Siege engines are not hirelings but minions of said hireling.
if (!mobile.behaviourType.equals(Enum.MobBehaviourType.SiegeEngine))
if (mobile.behaviourType.equals(Enum.MobBehaviourType.SiegeEngine) ||
mobile.behaviourType.equals(Enum.MobBehaviourType.GuardCaptain))
abstractCharacter.building.getHirelings().put(abstractCharacter, buildingSlot);
}