s/windowid/windowId

This commit is contained in:
Dylan K. Taylor
2017-08-08 12:37:26 +01:00
parent 3ad1b1ba7f
commit 75644b5df2
4 changed files with 13 additions and 13 deletions

View File

@ -31,14 +31,14 @@ use pocketmine\network\mcpe\NetworkSession;
class ContainerClosePacket extends DataPacket{
const NETWORK_ID = ProtocolInfo::CONTAINER_CLOSE_PACKET;
public $windowid;
public $windowId;
protected function decodePayload(){
$this->windowid = $this->getByte();
$this->windowId = $this->getByte();
}
protected function encodePayload(){
$this->putByte($this->windowid);
$this->putByte($this->windowId);
}
public function handle(NetworkSession $session) : bool{