Improved entity movement ySize offset

This commit is contained in:
Shoghi Cervantes
2015-04-08 22:09:06 +02:00
parent 71657a2a4e
commit 02ba9ffc16
5 changed files with 29 additions and 67 deletions

View File

@ -48,7 +48,7 @@ class Slab extends Transparent{
6 => "Quartz",
7 => "",
];
return (($this->meta & 0x08) === 0x08 ? "Upper " : "") . $names[$this->meta & 0x07] . " Slab";
return (($this->meta & 0x08) > 0 ? "Upper " : "") . $names[$this->meta & 0x07] . " Slab";
}
protected function recalculateBoundingBox(){