less unneeded output

This commit is contained in:
Leijurv 2018-09-25 13:55:03 -07:00
parent f561ff84fa
commit 9abc34ca4c
No known key found for this signature in database
GPG Key ID: 44A3EA646EADAC6A
2 changed files with 4 additions and 2 deletions

View File

@ -5,7 +5,7 @@
-keepattributes Signature
-keepattributes *Annotation*
-optimizationpasses 10
-optimizationpasses 5
-verbose
-allowaccessmodification # anything not kept can be changed from public to private and inlined etc

View File

@ -55,7 +55,9 @@ public class BaritoneAutoTest implements AbstractGameEventListener, Helper {
System.out.println("Waiting for world to generate... " + event.getCount());
return;
}
System.out.println(playerFeet() + " " + event.getCount());
if (event.getCount() % 100 == 0) { // print only once every 5 seconds
System.out.println(playerFeet() + " " + event.getCount());
}
PathingBehavior.INSTANCE.setGoal(GOAL);
PathingBehavior.INSTANCE.path();
if (GOAL.isInGoal(playerFeet())) {