Merge branch '1.16.5' into 1.17.1

This commit is contained in:
ZacSharp
2022-10-06 20:43:01 +02:00
23 changed files with 1007 additions and 22 deletions

View File

@@ -622,7 +622,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;
}