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

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;
}