mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-06 01:46:04 +00:00
Use getBool() more
This commit is contained in:
@ -42,7 +42,7 @@ class CommandStepPacket extends DataPacket{
|
||||
$this->overload = $this->getString();
|
||||
$this->uvarint1 = $this->getUnsignedVarInt();
|
||||
$this->currentStep = $this->getUnsignedVarInt();
|
||||
$this->done = (bool) $this->getByte();
|
||||
$this->done = $this->getBool();
|
||||
$this->clientId = $this->getUnsignedVarLong();
|
||||
$this->inputJson = json_decode($this->getString());
|
||||
$this->outputJson = $this->getString();
|
||||
|
Reference in New Issue
Block a user