Return to ignore

This commit is contained in:
est31 2015-06-24 22:45:52 +02:00
parent b13809f0c0
commit 3d43df99f1
2 changed files with 2 additions and 0 deletions

View File

@ -880,6 +880,7 @@ void Client::ProcessData(NetworkPacket *pkt)
if (command >= TOCLIENT_NUM_MSG_TYPES) {
infostream << "Client: Ignoring unknown command "
<< command << std::endl;
return;
}
/*

View File

@ -1206,6 +1206,7 @@ void Server::ProcessData(NetworkPacket *pkt)
if (command >= TOSERVER_NUM_MSG_TYPES) {
infostream << "Server: Ignoring unknown command "
<< command << std::endl;
return;
}
if (toServerCommandTable[command].state == TOSERVER_STATE_NOT_CONNECTED) {