mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-08 02:42:58 +00:00
Implemented coral blocks
there are some complications with coral plants due to the fact we're stuck with R12 worlds right now - and also coral fans are a major pain to implement due to how messed up the metadata is.
This commit is contained in:
@ -127,6 +127,7 @@ use function assert;
|
||||
* @method static ChemistryTable COMPOUND_CREATOR()
|
||||
* @method static Concrete CONCRETE()
|
||||
* @method static ConcretePowder CONCRETE_POWDER()
|
||||
* @method static CoralBlock CORAL_BLOCK()
|
||||
* @method static Flower CORNFLOWER()
|
||||
* @method static Opaque CRACKED_STONE_BRICKS()
|
||||
* @method static CraftingTable CRAFTING_TABLE()
|
||||
@ -743,6 +744,7 @@ final class VanillaBlocks{
|
||||
self::register("compound_creator", $factory->get(238));
|
||||
self::register("concrete", $factory->get(236));
|
||||
self::register("concrete_powder", $factory->get(237));
|
||||
self::register("coral_block", $factory->get(387));
|
||||
self::register("cornflower", $factory->get(38, 9));
|
||||
self::register("cracked_stone_bricks", $factory->get(98, 2));
|
||||
self::register("crafting_table", $factory->get(58));
|
||||
|
Reference in New Issue
Block a user