From 373f0854368cd6e278a38f4e45ad69902118bd89 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Mon, 20 Nov 2017 09:50:52 +0000 Subject: [PATCH] Fixed a usage of get(true) --- src/pocketmine/network/mcpe/protocol/UpdateEquipPacket.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pocketmine/network/mcpe/protocol/UpdateEquipPacket.php b/src/pocketmine/network/mcpe/protocol/UpdateEquipPacket.php index b7de16454..59e53b845 100644 --- a/src/pocketmine/network/mcpe/protocol/UpdateEquipPacket.php +++ b/src/pocketmine/network/mcpe/protocol/UpdateEquipPacket.php @@ -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(){