This commit is contained in:
Leijurv 2018-09-11 06:37:08 -07:00
parent a67e6fd163
commit 9daf46e30c
No known key found for this signature in database
GPG Key ID: 44A3EA646EADAC6A
2 changed files with 4 additions and 2 deletions

View File

@ -125,7 +125,7 @@ public interface MovementHelper extends ActionCosts, Helper {
if (block == Blocks.AIR) {
return true;
}
// exceptions - blocks that are isPassasble true, but we can't actually jump through
// exceptions - blocks that are isPassable true, but we can't actually jump through
if (block == Blocks.FIRE
|| block == Blocks.TRIPWIRE
|| block == Blocks.WEB

View File

@ -77,7 +77,9 @@ public interface Helper {
if (!Baritone.settings().chatDebug.get()) {
System.out.println("Suppressed debug message:");
System.out.println(message);
return;
/*if (!Stream.of(Thread.currentThread().getStackTrace()).map(StackTraceElement::getClassName).anyMatch(x -> x.equals(ExampleBaritoneControl.class.getName()))) {
return;
}*/
}
ITextComponent component = MESSAGE_PREFIX.createCopy();