Add pause "command" in ExampleBaritoneControl

This commit is contained in:
Brady 2018-10-03 12:44:28 -05:00
parent 239bb14e3a
commit 820c108548
No known key found for this signature in database
GPG Key ID: 73A788379A197567
1 changed files with 4 additions and 0 deletions

View File

@ -480,5 +480,9 @@ public class ExampleBaritoneControl extends Behavior implements Helper {
event.cancel();
return;
}
if (msg.equals("pause")) {
PathingBehavior.INSTANCE.toggle();
return;
}
}
}