Revert back to floor/wall banner variants

this code largely duplicates the same code in FloorSign/WallSign and needs to be de-duplicated.
This commit is contained in:
Dylan K. Taylor
2020-10-04 19:05:43 +01:00
parent 505d4e402f
commit 7f9c4355f0
10 changed files with 155 additions and 92 deletions

View File

@ -57,7 +57,7 @@ use function assert;
* @method static Flower AZURE_BLUET()
* @method static Bamboo BAMBOO()
* @method static BambooSapling BAMBOO_SAPLING()
* @method static Banner BANNER()
* @method static FloorBanner BANNER()
* @method static Transparent BARRIER()
* @method static Beacon BEACON()
* @method static Bed BED()
@ -654,6 +654,7 @@ use function assert;
* @method static TripwireHook TRIPWIRE_HOOK()
* @method static UnderwaterTorch UNDERWATER_TORCH()
* @method static Vine VINES()
* @method static WallBanner WALL_BANNER()
* @method static Water WATER()
* @method static WeightedPressurePlateHeavy WEIGHTED_PRESSURE_PLATE_HEAVY()
* @method static WeightedPressurePlateLight WEIGHTED_PRESSURE_PLATE_LIGHT()
@ -1328,6 +1329,7 @@ final class VanillaBlocks{
self::register("tripwire_hook", $factory->get(131));
self::register("underwater_torch", $factory->get(239, 5));
self::register("vines", $factory->get(106));
self::register("wall_banner", $factory->get(177, 2));
self::register("water", $factory->get(8));
self::register("weighted_pressure_plate_heavy", $factory->get(148));
self::register("weighted_pressure_plate_light", $factory->get(147));