Skip to content
This repository has been archived by the owner on Feb 9, 2021. It is now read-only.

Commit

Permalink
Fix typo on ContainerSetSlotPacket
Browse files Browse the repository at this point in the history
hotboar -> hotbar ![](http://i.imgur.com/n97uQb9.png)
  • Loading branch information
shoghicp committed Jan 30, 2016
1 parent 9985577 commit e593792
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pocketmine/network/protocol/ContainerSetSlotPacket.php
Expand Up @@ -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();
}

Expand All @@ -49,4 +49,4 @@ public function encode(){
$this->putSlot($this->item);
}

}
}

0 comments on commit e593792

Please sign in to comment.