From 714c6773c3957b0a813c57645827f4f18077f512 Mon Sep 17 00:00:00 2001 From: Leijurv Date: Mon, 22 Apr 2019 14:51:07 -0700 Subject: [PATCH] explain what invert means --- src/api/java/baritone/api/utils/ExampleBaritoneControl.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/api/java/baritone/api/utils/ExampleBaritoneControl.java b/src/api/java/baritone/api/utils/ExampleBaritoneControl.java index 7985abde0..715d8edba 100644 --- a/src/api/java/baritone/api/utils/ExampleBaritoneControl.java +++ b/src/api/java/baritone/api/utils/ExampleBaritoneControl.java @@ -442,6 +442,11 @@ public class ExampleBaritoneControl implements Helper, AbstractGameEventListener try { baritone.getExploreProcess().applyJsonFilter(path1, invert); logDirect("Loaded filter. Inverted: " + invert); + if (invert) { + logDirect("Chunks on this list will be treated as possibly unexplored, all others will be treated as certainly explored"); + } else { + logDirect("Chunks on this list will be treated as certainly explored, all others will be treated as possibly unexplored"); + } } catch (Exception e) { e.printStackTrace(); logDirect("Unable to load " + path1);