Add pause "command" in ExampleBaritoneControl

This commit is contained in:
Brady
2018-10-03 12:44:28 -05:00
parent 239bb14e3a
commit 820c108548

View File

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