Merge pull request #3664 from ZacSharp/patch-9

Fix yet another cave air bug
This commit is contained in:
Leijurv 2022-09-18 22:54:42 -10:00 committed by GitHub
commit cd7c504c76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -603,7 +603,7 @@ public interface MovementHelper extends ActionCosts, Helper {
static boolean isTransparent(Block b) {
return b == Blocks.AIR ||
return b instanceof AirBlock ||
b == Blocks.LAVA ||
b == Blocks.WATER;
}