Skip to content

Commit

Permalink
Merge pull request #3798 from ZacSharp/patch-12
Browse files Browse the repository at this point in the history
Fix canWalkThrough caching
  • Loading branch information
leijurv authored Jan 16, 2023
2 parents d6d9af6 + aa92063 commit 21bc830
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ private int fillData(int id, IBlockState state) {
if (canWalkThroughState == YES) {
blockData |= CAN_WALK_THROUGH_MASK;
}
if (canWalkOnState == MAYBE) {
if (canWalkThroughState == MAYBE) {
blockData |= CAN_WALK_THROUGH_SPECIAL_MASK;
}

Expand Down

0 comments on commit 21bc830

Please sign in to comment.