Fix some php7 update DoubleTag leftovers

This commit is contained in:
Dylan K. Taylor 2017-02-21 12:27:27 +00:00
parent 9195375af4
commit 9f7dc32650
2 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ class DoubleSlab extends Solid{
6 => "Quartz",
7 => "Nether Brick",
];
return "DoubleTag " . $names[$this->meta & 0x07] . " Slab";
return "Double " . $names[$this->meta & 0x07] . " Slab";
}
public function getDrops(Item $item){

View File

@ -51,7 +51,7 @@ class DoubleWoodSlab extends Solid{
6 => "",
7 => ""
];
return "DoubleTag " . $names[$this->meta & 0x07] . " Wooden Slab";
return "Double " . $names[$this->meta & 0x07] . " Wooden Slab";
}
public function getDrops(Item $item){