forked from MagicBane/Server
strike counter
This commit is contained in:
@@ -1858,11 +1858,13 @@ public class ClientMessagePump implements NetMsgHandler {
|
||||
@Override
|
||||
public boolean handleClientMsg(ClientNetMsg msg) {
|
||||
|
||||
if (msg == null || !KeyCloneAudit.auditNetMsg(msg)) {
|
||||
if (msg == null) {
|
||||
Logger.error("handleClientMsg", "Recieved null msg. Returning.");
|
||||
return false;
|
||||
}
|
||||
|
||||
KeyCloneAudit.auditNetMsg(msg);
|
||||
|
||||
ClientConnection origin;
|
||||
Protocol protocolMsg = Protocol.NONE;
|
||||
Session s;
|
||||
|
||||
Reference in New Issue
Block a user