Starting to whittle away at initmob method.

This commit is contained in:
2023-08-23 13:01:36 -04:00
parent 3534ac6477
commit 62c7e52487
+6 -2
View File
@@ -246,6 +246,12 @@ public class Mob extends AbstractIntelligenceAgent {
Logger.error(e + " " + this.dbID); Logger.error(e + " " + this.dbID);
} }
try {
initializeMob(false, false, this.isPlayerGuard);
} catch (Exception e) {
Logger.error("Mobile:" + this.dbID + ": " + e);
}
} }
public static void serializeMobForClientMsgOtherPlayer(Mob mob, ByteBufferWriter writer) throws SerializationException { public static void serializeMobForClientMsgOtherPlayer(Mob mob, ByteBufferWriter writer) throws SerializationException {
@@ -1882,8 +1888,6 @@ public class Mob extends AbstractIntelligenceAgent {
NPCManager.slotCharacterInBuilding(this); NPCManager.slotCharacterInBuilding(this);
} }
initializeMob(false, false, this.isPlayerGuard);
// Initialize inventory // Initialize inventory
this.charItemManager = new CharacterItemManager(this); this.charItemManager = new CharacterItemManager(this);