Merge pull request #3242 from wagyourtail/1.17.1

fix getting stuck in powdered snow
This commit is contained in:
Leijurv 2022-02-02 21:10:14 -08:00 committed by GitHub
commit af240d38e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -105,6 +105,9 @@ public interface MovementHelper extends ActionCosts, Helper {
if (block == Blocks.BIG_DRIPLEAF) {
return false;
}
if (block == Blocks.POWDER_SNOW) {
return false;
}
if (Baritone.settings().blocksToAvoid.value.contains(block)) {
return false;
}