clarify error messages

This commit is contained in:
Leijurv
2018-09-09 13:09:56 -07:00
parent 4221c07d1f
commit d29a37664c
@@ -108,7 +108,11 @@ public class ExampleBaritoneControl extends Behavior {
if (PathingBehavior.INSTANCE.getGoal() == null) { if (PathingBehavior.INSTANCE.getGoal() == null) {
displayChatMessageRaw("No goal."); displayChatMessageRaw("No goal.");
} else { } else {
displayChatMessageRaw("Currently executing a path. Please cancel it first."); if (PathingBehavior.INSTANCE.getGoal().isInGoal(playerFeet())) {
displayChatMessageRaw("Already in goal");
} else {
displayChatMessageRaw("Currently executing a path. Please cancel it first.");
}
} }
} }
event.cancel(); event.cancel();
@@ -266,7 +270,9 @@ public class ExampleBaritoneControl extends Behavior {
Goal goal = new GoalBlock(waypoint.location); Goal goal = new GoalBlock(waypoint.location);
PathingBehavior.INSTANCE.setGoal(goal); PathingBehavior.INSTANCE.setGoal(goal);
if (!PathingBehavior.INSTANCE.path()) { if (!PathingBehavior.INSTANCE.path()) {
displayChatMessageRaw("Currently executing a path. Please cancel it first."); if (!goal.isInGoal(playerFeet())) {
displayChatMessageRaw("Currently executing a path. Please cancel it first.");
}
} }
event.cancel(); event.cancel();
return; return;