diff --git a/src/main/java/com/simibubi/create/foundation/utility/BlockHelper.java b/src/main/java/com/simibubi/create/foundation/utility/BlockHelper.java index c5fd57453..6f3eaa605 100644 --- a/src/main/java/com/simibubi/create/foundation/utility/BlockHelper.java +++ b/src/main/java/com/simibubi/create/foundation/utility/BlockHelper.java @@ -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; }