Fixed regression in air spreader never removing air blocks
This commit is contained in:
parent
dea008ec49
commit
4c1cf7cd94
1 changed files with 1 additions and 1 deletions
|
@ -229,7 +229,7 @@ public class StateAir {
|
|||
assert blockState != null;
|
||||
final int typeBlock;
|
||||
final Block block = blockState.getBlock();
|
||||
if (blockState instanceof BlockAirFlow) {
|
||||
if (block instanceof BlockAirFlow) {
|
||||
typeBlock = BLOCK_AIR_FLOW;
|
||||
|
||||
} else if (block == Blocks.AIR) {// vanilla air
|
||||
|
|
Loading…
Add table
Reference in a new issue