mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-07 02:08:21 +00:00
Added spore blossoms
I got tired of the flood of warning messages every time someone joined the dev server...
This commit is contained in:
@ -532,6 +532,7 @@ final class BlockObjectToBlockStateSerializer implements BlockStateSerializer{
|
||||
$this->mapSimple(Blocks::SNOW(), Ids::SNOW);
|
||||
$this->mapSimple(Blocks::SOUL_SAND(), Ids::SOUL_SAND);
|
||||
$this->mapSimple(Blocks::SOUL_SOIL(), Ids::SOUL_SOIL);
|
||||
$this->mapSimple(Blocks::SPORE_BLOSSOM(), Ids::SPORE_BLOSSOM);
|
||||
$this->mapSimple(Blocks::TINTED_GLASS(), Ids::TINTED_GLASS);
|
||||
$this->mapSimple(Blocks::TUFF(), Ids::TUFF);
|
||||
$this->mapSimple(Blocks::WARPED_FENCE(), Ids::WARPED_FENCE);
|
||||
|
@ -371,6 +371,7 @@ final class BlockStateToBlockObjectDeserializer implements BlockStateDeserialize
|
||||
$this->map(Ids::SNOW, fn() => Blocks::SNOW());
|
||||
$this->map(Ids::SOUL_SAND, fn() => Blocks::SOUL_SAND());
|
||||
$this->map(Ids::SOUL_SOIL, fn() => Blocks::SOUL_SOIL());
|
||||
$this->map(Ids::SPORE_BLOSSOM, fn() => Blocks::SPORE_BLOSSOM());
|
||||
$this->map(Ids::STONECUTTER, fn() => Blocks::LEGACY_STONECUTTER());
|
||||
$this->map(Ids::TINTED_GLASS, fn() => Blocks::TINTED_GLASS());
|
||||
$this->map(Ids::TUFF, fn() => Blocks::TUFF());
|
||||
|
Reference in New Issue
Block a user