Print out PROTOCOL_VERSIONs if server is incompatible with client

This commit is contained in:
Perttu Ahola 2011-12-02 01:24:54 +02:00
parent f8bbecebf5
commit 09010410cf
1 changed files with 5 additions and 1 deletions

View File

@ -2015,7 +2015,11 @@ void Server::ProcessData(u8 *data, u32 datasize, u16 peer_id)
SendAccessDenied(m_con, peer_id, std::wstring(
L"Your client's version is not supported.\n"
L"Server version is ")
+ narrow_to_wide(VERSION_STRING) + L"."
+ narrow_to_wide(VERSION_STRING) + L",\n"
+ L"server's PROTOCOL_VERSION is "
+ narrow_to_wide(itos(PROTOCOL_VERSION))
+ L", client's PROTOCOL_VERSION is "
+ narrow_to_wide(itos(net_proto_version))
);
return;
}