forked from MagicBane/Server
attack delay catching
This commit is contained in:
@@ -126,6 +126,13 @@ public enum CombatManager {
|
||||
return;
|
||||
}
|
||||
|
||||
if (attacker.getTimers().containsKey("Attack" + slot)) {
|
||||
AttackJob ajR = ((AttackJob)attacker.getTimers().get("Attack" + slot).getJob());
|
||||
if(ajR.target.equals(target)){
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
target.combatLock.writeLock().lock();
|
||||
|
||||
// check if character is in range to attack target
|
||||
|
||||
Reference in New Issue
Block a user