optimized slot for siege engines

This commit is contained in:
2023-08-27 21:26:00 -05:00
parent d573b238de
commit 36cc23457a
5 changed files with 14 additions and 12 deletions
+2 -2
View File
@@ -29,7 +29,7 @@ public class EndFearJob extends AbstractEffectJob {
if (this.target == null || (!(this.target instanceof Mob)))
return;
((Mob) this.target).setFearedObject(null);
((Mob) this.target).fearedObject = null;
}
@Override
@@ -40,6 +40,6 @@ public class EndFearJob extends AbstractEffectJob {
if (this.target == null || (!(this.target instanceof Mob)))
return;
((Mob) this.target).setFearedObject(null);
((Mob) this.target).fearedObject = null;
}
}