Skip to content

Commit

Permalink
Fix strict_protocol_version_checking functionality after ee9a442
Browse files Browse the repository at this point in the history
  • Loading branch information
SmallJoker committed Oct 16, 2017
1 parent 90e7d42 commit 46f7fe9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/network/serverpackethandler.cpp
Expand Up @@ -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 "
Expand Down

0 comments on commit 46f7fe9

Please sign in to comment.