Fix yet another cave air bug

This commit is contained in:
ZacSharp
2022-09-17 01:56:23 +02:00
committed by GitHub
parent 348b02e4f8
commit 96ba589d4d

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