mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-07 18:32:55 +00:00
s/windowid/windowId
This commit is contained in:
@ -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{
|
||||
|
Reference in New Issue
Block a user