combat bug fix

This commit is contained in:
2024-03-02 17:21:16 -06:00
parent c9f246afec
commit c520263179
+7
View File
@@ -156,6 +156,13 @@ public class Mob extends AbstractIntelligenceAgent {
this.currentID = this.dbID; this.currentID = this.dbID;
this.agentType = AIAgentType.MOBILE; this.agentType = AIAgentType.MOBILE;
if(this.getMobBaseID() == 14104) {//guards
this.level = 75;
this.behaviourType = MobBehaviourType.Aggro;
this.healthMax = 15000;
this.setHealth(15000);
}
} catch (Exception e) { } catch (Exception e) {
Logger.error(e + " " + this.dbID); Logger.error(e + " " + this.dbID);
} }