better error message

This commit is contained in:
Leijurv 2018-09-04 15:53:11 -07:00
parent 2bb01fdd20
commit 0c4fd39845
No known key found for this signature in database
GPG Key ID: 44A3EA646EADAC6A
1 changed files with 5 additions and 1 deletions

View File

@ -105,7 +105,11 @@ public class ExampleBaritoneControl extends Behavior {
}
if (msg.equals("path")) {
if (!PathingBehavior.INSTANCE.path()) {
displayChatMessageRaw("Currently executing a path. Please cancel it first.");
if (PathingBehavior.INSTANCE.getGoal() == null) {
displayChatMessageRaw("No goal.");
} else {
displayChatMessageRaw("Currently executing a path. Please cancel it first.");
}
}
event.cancel();
return;