Fix typo on ContainerSetSlotPacket

hotboar -> hotbar ![](http://i.imgur.com/n97uQb9.png)
This commit is contained in:
Shoghi Cervantes 2016-01-30 14:03:28 +01:00
parent 99855773d7
commit e5937926cd

View File

@ -37,7 +37,7 @@ class ContainerSetSlotPacket extends DataPacket{
public function decode(){ public function decode(){
$this->windowid = $this->getByte(); $this->windowid = $this->getByte();
$this->slot = $this->getShort(); $this->slot = $this->getShort();
$this->hotboarSlot = $this->getShort(); $this->hotbarSlot = $this->getShort();
$this->item = $this->getSlot(); $this->item = $this->getSlot();
} }