mirror of
https://github.com/Jozufozu/Flywheel.git
synced 2024-11-14 22:43:56 +01:00
Fix blockzapper duplicating bonemeal and breaking bedrock
This commit is contained in:
parent
5958370900
commit
671f307071
@ -87,6 +87,12 @@ public class BlockHelper {
|
||||
return blockState.with(BlockStateProperties.HATCH_0_2, 0);
|
||||
if (blockState.has(BlockStateProperties.STAGE_0_1))
|
||||
return blockState.with(BlockStateProperties.STAGE_0_1, 0);
|
||||
if (blockState.has(BlockStateProperties.LEVEL_0_3))
|
||||
return blockState.with(BlockStateProperties.LEVEL_0_3, 0);
|
||||
if (blockState.has(BlockStateProperties.LEVEL_0_8))
|
||||
return blockState.with(BlockStateProperties.LEVEL_0_8, 0);
|
||||
if (blockState.has(BlockStateProperties.EXTENDED))
|
||||
return blockState.with(BlockStateProperties.EXTENDED, false);
|
||||
return blockState;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user