#116 - this.stop();

This commit is contained in:
Rodgerwilco 2012-05-04 14:26:43 -07:00
parent b6de295806
commit 18b63da356
1 changed files with 2 additions and 2 deletions

View File

@ -60,14 +60,14 @@ public class FightEvent extends DelayedEvent {
public void run() {
if(owner == null || affectedMob == null) {
return;
this.stop();
}
if (!owner.loggedIn()
|| (affectedMob instanceof Player && !((Player) affectedMob)
.loggedIn())) {
owner.resetCombat(CombatState.ERROR);
affectedMob.resetCombat(CombatState.ERROR);
return;
this.stop();
}
Mob attacker, opponent;