diff --git a/src/pocketmine/tile/EnchantTable.php b/src/pocketmine/tile/EnchantTable.php index 09e3cfc48..a94ae40bc 100644 --- a/src/pocketmine/tile/EnchantTable.php +++ b/src/pocketmine/tile/EnchantTable.php @@ -29,7 +29,7 @@ class EnchantTable extends Spawnable implements Nameable{ public function getName(){ - return isset($this->namedtag->CustomName) ? $this->namedtag->CustomName->getValue() : "Chest"; + return isset($this->namedtag->CustomName) ? $this->namedtag->CustomName->getValue() : "Enchanting Table"; } public function hasName(){ diff --git a/src/pocketmine/tile/Furnace.php b/src/pocketmine/tile/Furnace.php index e24a0bb86..6da32496c 100644 --- a/src/pocketmine/tile/Furnace.php +++ b/src/pocketmine/tile/Furnace.php @@ -71,7 +71,7 @@ class Furnace extends Tile implements InventoryHolder, Container, Nameable{ } public function getName(){ - return isset($this->namedtag->CustomName) ? $this->namedtag->CustomName->getValue() : "Chest"; + return isset($this->namedtag->CustomName) ? $this->namedtag->CustomName->getValue() : "Furnace"; } public function hasName(){