mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-11-08 19:12:14 +01:00
Fix blockzapper duplicating bonemeal and breaking bedrock
This commit is contained in:
parent
5958370900
commit
671f307071
1 changed files with 6 additions and 0 deletions
|
@ -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 a new issue