This commit is contained in:
leijurv 2018-08-13 20:18:12 -07:00
parent 04005b6e59
commit ebee78b035

View File

@ -138,10 +138,10 @@ public interface MovementHelper extends ActionCosts, Helper {
IBlockState state = BlockStateInterface.get(position); IBlockState state = BlockStateInterface.get(position);
Block block = state.getBlock(); Block block = state.getBlock();
if (!block.equals(Blocks.AIR) && !canWalkThrough(position)) { if (!block.equals(Blocks.AIR) && !canWalkThrough(position)) {
if (avoidBreaking(position)) { if (!Baritone.settings().allowBreak) {
return COST_INF; return COST_INF;
} }
if (!Baritone.settings().allowBreak) { if (avoidBreaking(position)) {
return COST_INF; return COST_INF;
} }
//if (!Baritone.allowBreakOrPlace) { //if (!Baritone.allowBreakOrPlace) {