Merge pull request #3798 from ZacSharp/patch-12

Fix canWalkThrough caching
This commit is contained in:
leijurv 2023-01-16 12:20:11 -08:00 committed by GitHub
commit 21bc830143
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ public class PrecomputedData {
if (canWalkThroughState == YES) {
blockData |= CAN_WALK_THROUGH_MASK;
}
if (canWalkOnState == MAYBE) {
if (canWalkThroughState == MAYBE) {
blockData |= CAN_WALK_THROUGH_SPECIAL_MASK;
}