Fix strict_protocol_version_checking functionality after ee9a442

master
SmallJoker 2017-10-16 20:12:48 +02:00
parent 90e7d42375
commit 46f7fe91a2
1 changed files with 2 additions and 1 deletions

View File

@ -142,7 +142,8 @@ void Server::handleCommand_Init(NetworkPacket* pkt)
client->net_proto_version = net_proto_version;
if (g_settings->getBool("strict_protocol_version_checking") ||
if ((g_settings->getBool("strict_protocol_version_checking") &&
net_proto_version != LATEST_PROTOCOL_VERSION) ||
net_proto_version < SERVER_PROTOCOL_VERSION_MIN ||
net_proto_version > SERVER_PROTOCOL_VERSION_MAX) {
actionstream << "Server: A mismatched client tried to connect from "