Project cleanup pre merge.

This commit is contained in:
2023-07-15 09:23:48 -04:00
parent 134b651df8
commit 9bbdef224d
747 changed files with 99704 additions and 101200 deletions
+7 -7
View File
@@ -23,23 +23,23 @@ public class EndFearJob extends AbstractEffectJob {
@Override
protected void doJob() {
//cancel fear for mob.
if (this.target == null || (!(this.target instanceof Mob)))
return;
((Mob) this.target).setFearedObject(null);
}
@Override
protected void _cancelJob() {
//cancel fear for mob.
if (this.target == null || (!(this.target instanceof Mob)))
if (this.target == null || (!(this.target instanceof Mob)))
return;
((Mob) this.target).setFearedObject(null);
}
}