Fix canWalkThrough caching

This commit is contained in:
ZacSharp 2023-01-15 14:53:04 +01:00 committed by GitHub
parent d6d9af65fb
commit aa9206381d
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;
}