forked from RepoMirrors/baritone
Merge pull request #1340 from fw4hre0xxq/issue-1339-trapchest-pathing
fix #1339
This commit is contained in:
commit
217e0da4a6
|
@ -302,7 +302,7 @@ public interface MovementHelper extends ActionCosts, Helper {
|
||||||
if (block == Blocks.FARMLAND || block == Blocks.GRASS_PATH) {
|
if (block == Blocks.FARMLAND || block == Blocks.GRASS_PATH) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if (block == Blocks.ENDER_CHEST || block == Blocks.CHEST) {
|
if (block == Blocks.ENDER_CHEST || block == Blocks.CHEST || block == Blocks.TRAPPED_CHEST ) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if (isWater(block)) {
|
if (isWater(block)) {
|
||||||
|
|
Loading…
Reference in New Issue