LoginPacket: removed an old hack that's no longer used

This commit is contained in:
Dylan K. Taylor 2020-05-06 21:18:05 +01:00
parent a92580b993
commit 5d154e43a9

View File

@ -52,14 +52,6 @@ class LoginPacket extends DataPacket implements ServerboundPacket{
/** @var ClientData decoded payload of the clientData JWT */
public $clientData;
/**
* This field may be used by plugins to bypass keychain verification. It should only be used for plugins such as
* Specter where passing verification would take too much time and not be worth it.
*
* @var bool
*/
public $skipVerification = false;
public function canBeSentBeforeLogin() : bool{
return true;
}