StringToItemParser: fixed not recognizing slime or slime_block

This commit is contained in:
Dylan K. Taylor 2021-12-06 23:51:30 +00:00
parent 0c012ca5d9
commit 5a351d3b17
No known key found for this signature in database
GPG Key ID: 8927471A91CAFD3D

View File

@ -805,6 +805,8 @@ final class StringToItemParser extends StringToTParser{
$result->registerBlock("skull_block", fn() => VanillaBlocks::MOB_HEAD());
$result->registerBlock("slab", fn() => VanillaBlocks::SMOOTH_STONE_SLAB());
$result->registerBlock("slabs", fn() => VanillaBlocks::SMOOTH_STONE_SLAB());
$result->registerBlock("slime", fn() => VanillaBlocks::SLIME());
$result->registerBlock("slime_block", fn() => VanillaBlocks::SLIME());
$result->registerBlock("smoker", fn() => VanillaBlocks::SMOKER());
$result->registerBlock("smooth_quartz", fn() => VanillaBlocks::SMOOTH_QUARTZ());
$result->registerBlock("smooth_quartz_slab", fn() => VanillaBlocks::SMOOTH_QUARTZ_SLAB());