From df7bafe2bcd58bc79b2e87fbfca79585945e251e Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Wed, 7 Oct 2020 15:16:27 +0100 Subject: [PATCH] TileFactory: fixed missing Beacon tile registration I had this locally but forgot to commit it ... --- src/block/tile/TileFactory.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/block/tile/TileFactory.php b/src/block/tile/TileFactory.php index 011f71c88..62875c086 100644 --- a/src/block/tile/TileFactory.php +++ b/src/block/tile/TileFactory.php @@ -49,6 +49,7 @@ final class TileFactory{ public function __construct(){ $this->register(Banner::class, ["Banner", "minecraft:banner"]); + $this->register(Beacon::class, ["Beacon", "minecraft:beacon"]); $this->register(Bed::class, ["Bed", "minecraft:bed"]); $this->register(BrewingStand::class, ["BrewingStand", "minecraft:brewing_stand"]); $this->register(Chest::class, ["Chest", "minecraft:chest"]);