diff --git a/src/item/StringToItemParser.php b/src/item/StringToItemParser.php index 4771ff786..46b37e3ae 100644 --- a/src/item/StringToItemParser.php +++ b/src/item/StringToItemParser.php @@ -208,6 +208,19 @@ final class StringToItemParser extends StringToTParser{ $result->registerBlock("cauldron", fn() => Blocks::CAULDRON()); $result->registerBlock("cave_vines", fn() => Blocks::CAVE_VINES()); $result->registerBlock("chain", fn() => Blocks::CHAIN()); + $result->registerBlock("cherry_button", fn() => Blocks::CHERRY_BUTTON()); + $result->registerBlock("cherry_door", fn() => Blocks::CHERRY_DOOR()); + $result->registerBlock("cherry_fence", fn() => Blocks::CHERRY_FENCE()); + $result->registerBlock("cherry_fence_gate", fn() => Blocks::CHERRY_FENCE_GATE()); + $result->registerBlock("cherry_leaves", fn() => Blocks::CHERRY_LEAVES()); + $result->registerBlock("cherry_log", fn() => Blocks::CHERRY_LOG()); + $result->registerBlock("cherry_planks", fn() => Blocks::CHERRY_PLANKS()); + $result->registerBlock("cherry_pressure_plate", fn() => Blocks::CHERRY_PRESSURE_PLATE()); + $result->registerBlock("cherry_sign", fn() => Blocks::CHERRY_SIGN()); + $result->registerBlock("cherry_slab", fn() => Blocks::CHERRY_SLAB()); + $result->registerBlock("cherry_stairs", fn() => Blocks::CHERRY_STAIRS()); + $result->registerBlock("cherry_trapdoor", fn() => Blocks::CHERRY_TRAPDOOR()); + $result->registerBlock("cherry_wood", fn() => Blocks::CHERRY_WOOD()); $result->registerBlock("chemical_heat", fn() => Blocks::CHEMICAL_HEAT()); $result->registerBlock("chemistry_table", fn() => Blocks::COMPOUND_CREATOR()); $result->registerBlock("chest", fn() => Blocks::CHEST());