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