disable load boundary cutoff by default, fixes #114

This commit is contained in:
Leijurv 2018-09-02 10:46:54 -07:00
parent e58c43305c
commit f3bd50dc36
No known key found for this signature in database
GPG Key ID: 44A3EA646EADAC6A

View File

@ -122,8 +122,9 @@ public class Settings {
/**
* After calculating a path (potentially through cached chunks), artificially cut it off to just the part that is
* entirely within currently loaded chunks. Improves path safety because cached chunks are heavily simplified.
* See issue #114 for why this is disabled.
*/
public Setting<Boolean> cutoffAtLoadBoundary = new Setting<>(true);
public Setting<Boolean> cutoffAtLoadBoundary = new Setting<>(false);
/**
* Stop 5 movements before anything that made the path COST_INF.