mob aggro raneg when swapping hated target

This commit is contained in:
2023-05-28 10:13:49 -05:00
parent b42a378ca8
commit ea919b4ecf
+1 -1
View File
@@ -727,7 +727,7 @@ public class MobileFSM {
if(potentialTarget.equals(mob.getCombatTarget())){
continue;
}
if(potentialTarget != null && potentialTarget.getHateValue() > CurrentHateValue){
if(potentialTarget != null && potentialTarget.getHateValue() > CurrentHateValue && MovementUtilities.inRangeToAggro(mob, potentialTarget)){
CurrentHateValue = potentialTarget.getHateValue();
mostHatedTarget = potentialTarget;
}