Removed catch to propagate error.

This commit is contained in:
2023-08-23 13:03:59 -04:00
parent 62c7e52487
commit ef577dd313
+2 -5
View File
@@ -246,11 +246,8 @@ public class Mob extends AbstractIntelligenceAgent {
Logger.error(e + " " + this.dbID); Logger.error(e + " " + this.dbID);
} }
try { initializeMob(false, false, this.isPlayerGuard);
initializeMob(false, false, this.isPlayerGuard);
} catch (Exception e) {
Logger.error("Mobile:" + this.dbID + ": " + e);
}
} }