Fixed regression in air spreader never removing air blocks

This commit is contained in:
Unknown 2019-01-19 17:33:47 +01:00 committed by unknown
parent dea008ec49
commit 4c1cf7cd94

View file

@ -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