Removing wrong checksum actions from loginserver.

This commit is contained in:
mobius 2015-01-02 08:00:51 +00:00
parent 6c264d00f0
commit ec3434ac00

View File

@ -99,9 +99,9 @@ public final class L2LoginClient extends MMOClient<MMOConnection<L2LoginClient>>
isChecksumValid = _loginCrypt.decrypt(buf.array(), buf.position(), size);
if (!isChecksumValid)
{
_log.warning("Wrong checksum from client: " + toString());
super.getConnection().close((SendablePacket<L2LoginClient>) null);
return false;
// _log.warning("Wrong checksum from client: " + toString());
// super.getConnection().close((SendablePacket<L2LoginClient>) null);
// return false;
}
return true;
}