Project reformat

This commit is contained in:
2024-04-01 17:00:14 -04:00
parent 3df1da364c
commit ee030a690a
11 changed files with 38 additions and 27 deletions
+3 -3
View File
@@ -115,7 +115,7 @@ public class MobAI {
if (mob.isMoving() && mob.getRange() > 20)
return;
CombatManager.combatCycle(mob,mob.combatTarget);
CombatManager.combatCycle(mob, mob.combatTarget);
}
if (target.getPet() != null)
@@ -149,7 +149,7 @@ public class MobAI {
MovementManager.sendRWSSMsg(mob);
CombatManager.combatCycle(mob, target);
CombatManager.combatCycle(mob, target);
if (mob.isSiege()) {
PowerProjectileMsg ppm = new PowerProjectileMsg(mob, target);
@@ -172,7 +172,7 @@ public class MobAI {
//no weapons, default mob attack speed 3 seconds.
CombatManager.combatCycle(mob, target);
CombatManager.combatCycle(mob, target);
} catch (Exception e) {
Logger.info(mob.getObjectUUID() + " " + mob.getName() + " Failed At: AttackMob" + " " + e.getMessage());