mirror of https://github.com/cabaletta/baritone
less unneeded output
This commit is contained in:
parent
f561ff84fa
commit
9abc34ca4c
|
@ -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
|
||||
|
|
|
@ -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())) {
|
||||
|
|
Loading…
Reference in New Issue