early exit for pets attacking a null target
This commit is contained in:
@@ -124,7 +124,7 @@ public enum CombatManager {
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
//check if this slot is on attack timer, if timer has passed clear it, else early exit
|
//check if this slot is on attack timer, if timer has passed clear it, else early exit
|
||||||
if(attacker.getTimers().containsKey("Attack"+slot.name()))
|
if(attacker.getTimers() != null && attacker.getTimers().containsKey("Attack"+slot.name()))
|
||||||
if(attacker.getTimers().get("Attack"+slot.name()).timeToExecutionLeft() <= 0)
|
if(attacker.getTimers().get("Attack"+slot.name()).timeToExecutionLeft() <= 0)
|
||||||
attacker.getTimers().remove("Attack"+slot.name());
|
attacker.getTimers().remove("Attack"+slot.name());
|
||||||
else
|
else
|
||||||
|
|||||||
Reference in New Issue
Block a user