Remove redundant TODO comment

This commit is contained in:
Dylan K. Taylor 2017-02-27 13:22:29 +00:00
parent d0faf3df91
commit 5aed0fb0d5

View File

@ -34,7 +34,7 @@ class ResourcePackClientResponsePacket extends DataPacket{
const STATUS_HAVE_ALL_PACKS = 3; const STATUS_HAVE_ALL_PACKS = 3;
const STATUS_COMPLETED = 4; const STATUS_COMPLETED = 4;
public $status; //TODO: add constants for status types public $status;
public $packIds = []; public $packIds = [];
public function decode(){ public function decode(){
@ -58,4 +58,4 @@ class ResourcePackClientResponsePacket extends DataPacket{
return $session->handleResourcePackClientResponse($this); return $session->handleResourcePackClientResponse($this);
} }
} }