diff --git a/src/pocketmine/tile/Furnace.php b/src/pocketmine/tile/Furnace.php index cc7d3c347..8eaf3d8f3 100644 --- a/src/pocketmine/tile/Furnace.php +++ b/src/pocketmine/tile/Furnace.php @@ -46,7 +46,7 @@ class Furnace extends Tile implements InventoryHolder, Container{ $this->inventory = new FurnaceInventory($this); if(!isset($this->namedtag->Items) or !($this->namedtag->Items instanceof Enum)){ - $this->namedtag->Items = new Enum("Inventory", []); + $this->namedtag->Items = new Enum("Items", []); $this->namedtag->Items->setTagType(NBT::TAG_Compound); }