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:
Dylan K. Taylor
2020-11-16 18:05:39 +00:00
parent 55a9ce46b9
commit 1eee24f1fa
5 changed files with 178 additions and 2 deletions

View File

@ -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));