From e5937926cd8b2b7dc041d68cd37667ec05314bfe Mon Sep 17 00:00:00 2001 From: Shoghi Cervantes Date: Sat, 30 Jan 2016 14:03:28 +0100 Subject: [PATCH] Fix typo on ContainerSetSlotPacket hotboar -> hotbar ![](http://i.imgur.com/n97uQb9.png) --- src/pocketmine/network/protocol/ContainerSetSlotPacket.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pocketmine/network/protocol/ContainerSetSlotPacket.php b/src/pocketmine/network/protocol/ContainerSetSlotPacket.php index 43c4d1c34..bc385f34c 100644 --- a/src/pocketmine/network/protocol/ContainerSetSlotPacket.php +++ b/src/pocketmine/network/protocol/ContainerSetSlotPacket.php @@ -37,7 +37,7 @@ class ContainerSetSlotPacket extends DataPacket{ public function decode(){ $this->windowid = $this->getByte(); $this->slot = $this->getShort(); - $this->hotboarSlot = $this->getShort(); + $this->hotbarSlot = $this->getShort(); $this->item = $this->getSlot(); } @@ -49,4 +49,4 @@ public function encode(){ $this->putSlot($this->item); } -} \ No newline at end of file +}