mirror of
https://github.com/CitizensDev/Citizens2.git
synced 2024-11-16 15:46:14 +01:00
Change StuckAction implementation
This commit is contained in:
parent
efe6685aaf
commit
f1ad62b116
@ -141,8 +141,13 @@ public class CitizensNavigator implements Navigator {
|
||||
return;
|
||||
if (reason == CancelReason.STUCK) {
|
||||
StuckAction action = localParams.stuckAction();
|
||||
if (action != null)
|
||||
action.run(npc, this);
|
||||
if (action != null) {
|
||||
boolean shouldContinue = action.run(npc, this);
|
||||
if (shouldContinue) {
|
||||
stationaryTicks = 0;
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
Bukkit.getPluginManager().callEvent(new NavigationCancelEvent(this, reason));
|
||||
stopNavigating();
|
||||
@ -175,7 +180,7 @@ public class CitizensNavigator implements Navigator {
|
||||
}
|
||||
|
||||
private boolean updateStationaryStatus() {
|
||||
if (localParams.stationaryTicks() < 0 || executing.getTargetType() == TargetType.ENTITY)
|
||||
if (localParams.stationaryTicks() < 0)
|
||||
return false;
|
||||
EntityLiving handle = npc.getHandle();
|
||||
if (lastX == (int) handle.locX && lastY == (int) handle.locY && lastZ == (int) handle.locZ) {
|
||||
|
Loading…
Reference in New Issue
Block a user