Skip to content

Commit

Permalink
Merge pull request #4531 from ZacSharp/pr/1.19.4/pathing/canWalkOnSou…
Browse files Browse the repository at this point in the history
…lSand

Allow walking on soul sand once again
  • Loading branch information
leijurv authored Oct 21, 2024
2 parents 58fcf32 + 991d822 commit db16386
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 db16386

Please sign in to comment.