Use getBool() more

This commit is contained in:
Dylan K. Taylor
2017-05-10 11:30:24 +01:00
parent c51c8ae700
commit 71af694cc1
3 changed files with 7 additions and 7 deletions

View File

@ -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();