From 08621604cd90c25553e8c6ce8190c372efe82c64 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Thu, 19 Jul 2018 15:43:38 +0100 Subject: [PATCH] PacketPool: remove redundant comment this was added to signify that these were normal, while BatchPacket was a hack. Since this has now been corrected, there's no need for the comment. --- src/pocketmine/network/mcpe/protocol/PacketPool.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/pocketmine/network/mcpe/protocol/PacketPool.php b/src/pocketmine/network/mcpe/protocol/PacketPool.php index d7facb48a..88f6b0c0a 100644 --- a/src/pocketmine/network/mcpe/protocol/PacketPool.php +++ b/src/pocketmine/network/mcpe/protocol/PacketPool.php @@ -32,7 +32,6 @@ class PacketPool{ public static function init() : void{ static::$pool = new \SplFixedArray(256); - //Normal packets static::registerPacket(new LoginPacket()); static::registerPacket(new PlayStatusPacket()); static::registerPacket(new ServerToClientHandshakePacket());