so annoying

This commit is contained in:
Leijurv 2018-08-11 13:31:21 -07:00
parent 141c71cb8b
commit 48227bae60
No known key found for this signature in database
GPG Key ID: 44A3EA646EADAC6A
3 changed files with 0 additions and 4 deletions

View File

@ -52,7 +52,6 @@ public class MovementDownward extends Movement {
@Override
public MovementState updateState(MovementState state) {
super.updateState(state);
System.out.println("Ticking with state " + state.getStatus());
switch (state.getStatus()) {
case PREPPING:
case UNREACHABLE:

View File

@ -60,7 +60,6 @@ public class MovementFall extends Movement {
@Override
public MovementState updateState(MovementState state) {
super.updateState(state);
switch (state.getStatus()) {
case PREPPING:
case UNREACHABLE:

View File

@ -101,8 +101,6 @@ public class MovementTraverse extends Movement {
@Override
public MovementState updateState(MovementState state) {
super.updateState(state);
System.out.println("Ticking with state " + state.getStatus());
System.out.println(state.getTarget().rotation);
switch (state.getStatus()) {
case PREPPING:
case UNREACHABLE: