Fixed a usage of get(true)

This commit is contained in:
Dylan K. Taylor 2017-11-20 09:50:52 +00:00
parent d2416d335e
commit 373f085436

View File

@ -46,7 +46,7 @@ class UpdateEquipPacket extends DataPacket{
$this->windowType = $this->getByte();
$this->unknownVarint = $this->getVarInt();
$this->entityUniqueId = $this->getEntityUniqueId();
$this->namedtag = $this->get(true);
$this->namedtag = $this->getRemaining();
}
protected function encodePayload(){