From 9311b4f24838bbd843abfbb6805d8dcb730b4cf1 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Wed, 8 Mar 2017 19:51:07 +0000 Subject: [PATCH] Remove unneeded comments --- src/pocketmine/network/mcpe/protocol/StartGamePacket.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pocketmine/network/mcpe/protocol/StartGamePacket.php b/src/pocketmine/network/mcpe/protocol/StartGamePacket.php index 0c43a515b..6e534f96e 100644 --- a/src/pocketmine/network/mcpe/protocol/StartGamePacket.php +++ b/src/pocketmine/network/mcpe/protocol/StartGamePacket.php @@ -58,8 +58,8 @@ class StartGamePacket extends DataPacket{ public function encode(){ $this->reset(); - $this->putEntityUniqueId($this->entityUniqueId); //EntityUniqueID - $this->putEntityRuntimeId($this->entityRuntimeId); //EntityRuntimeID + $this->putEntityUniqueId($this->entityUniqueId); + $this->putEntityRuntimeId($this->entityRuntimeId); $this->putVector3f($this->x, $this->y, $this->z); $this->putLFloat(0); //TODO: find out what these are (yaw/pitch?) $this->putLFloat(0);