make the completion check a setting

This commit is contained in:
Leijurv
2019-04-22 15:33:40 -07:00
parent 714c6773c3
commit e8b4f4d2b6
2 changed files with 7 additions and 1 deletions

View File

@@ -83,7 +83,7 @@ public class ExploreProcess extends BaritoneProcessHelper implements IExplorePro
return null;
}
IChunkFilter filter = calcFilter();
if (filter.finished()) {
if (!Baritone.settings().disableCompletionCheck.value && filter.finished()) {
logDirect("Explored all chunks");
onLostControl();
return null;