Skip to content

Commit

Permalink
Make soul sand canWalkOn again
Browse files Browse the repository at this point in the history
  • Loading branch information
ZacSharp committed Oct 20, 2024
1 parent f22f4ae commit 991d822
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ static Ternary canWalkOnBlockState(BlockState state) {
if (block == Blocks.LADDER || (block == Blocks.VINE && Baritone.settings().allowVines.value)) { // TODO reconsider this
return YES;
}
if (block == Blocks.FARMLAND || block == Blocks.DIRT_PATH) {
if (block == Blocks.FARMLAND || block == Blocks.DIRT_PATH || block == Blocks.SOUL_SAND) {
return YES;
}
if (block == Blocks.ENDER_CHEST || block == Blocks.CHEST || block == Blocks.TRAPPED_CHEST) {
Expand Down

0 comments on commit 991d822

Please sign in to comment.