clarify error messages

This commit is contained in:
Leijurv 2018-09-09 13:09:56 -07:00
parent 4221c07d1f
commit d29a37664c
No known key found for this signature in database
GPG Key ID: 44A3EA646EADAC6A

View File

@ -107,10 +107,14 @@ public class ExampleBaritoneControl extends Behavior {
if (!PathingBehavior.INSTANCE.path()) { if (!PathingBehavior.INSTANCE.path()) {
if (PathingBehavior.INSTANCE.getGoal() == null) { if (PathingBehavior.INSTANCE.getGoal() == null) {
displayChatMessageRaw("No goal."); displayChatMessageRaw("No goal.");
} else {
if (PathingBehavior.INSTANCE.getGoal().isInGoal(playerFeet())) {
displayChatMessageRaw("Already in goal");
} else { } else {
displayChatMessageRaw("Currently executing a path. Please cancel it first."); displayChatMessageRaw("Currently executing a path. Please cancel it first.");
} }
} }
}
event.cancel(); event.cancel();
return; return;
} }
@ -266,8 +270,10 @@ 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()) {
if (!goal.isInGoal(playerFeet())) {
displayChatMessageRaw("Currently executing a path. Please cancel it first."); displayChatMessageRaw("Currently executing a path. Please cancel it first.");
} }
}
event.cancel(); event.cancel();
return; return;
} }