mirror of
https://github.com/moparisthebest/minetest
synced 2024-11-04 16:35:03 -05:00
fix to the former
This commit is contained in:
parent
f8fca8ca5e
commit
f2051c9822
@ -1979,13 +1979,13 @@ void Server::ProcessData(u8 *data, u32 datasize, u16 peer_id)
|
||||
{
|
||||
net_proto_version = readU16(&data[2+1+PLAYERNAME_SIZE+PASSWORD_SIZE]);
|
||||
}
|
||||
if(net_proto_version == 0)
|
||||
getClient(peer->id)->net_proto_version = net_proto_version;
|
||||
/*if(net_proto_version == 0)
|
||||
{
|
||||
/*SendAccessDenied(m_con, peer_id,
|
||||
SendAccessDenied(m_con, peer_id,
|
||||
L"Your client is too old (network protocol)");
|
||||
return;*/
|
||||
SendChatMessage(peer_id, L"# Server: NOTE: YOUR CLIENT IS OLD AND DOES NOT WORK PROPERLY WITH THIS SERVER");
|
||||
}
|
||||
return;
|
||||
}*/
|
||||
|
||||
/*
|
||||
Set up player
|
||||
@ -2182,6 +2182,11 @@ void Server::ProcessData(u8 *data, u32 datasize, u16 peer_id)
|
||||
BroadcastChatMessage(message);
|
||||
}
|
||||
|
||||
if(getClient(peer->id)->net_proto_version == 0)
|
||||
{
|
||||
SendChatMessage(peer_id, L"# Server: NOTE: YOUR CLIENT IS OLD AND DOES NOT WORK PROPERLY WITH THIS SERVER");
|
||||
}
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -235,6 +235,8 @@ public:
|
||||
u16 peer_id;
|
||||
// The serialization version to use with the client
|
||||
u8 serialization_version;
|
||||
//
|
||||
u16 net_proto_version;
|
||||
// Version is stored in here after INIT before INIT2
|
||||
u8 pending_serialization_version;
|
||||
|
||||
@ -244,6 +246,7 @@ public:
|
||||
{
|
||||
peer_id = 0;
|
||||
serialization_version = SER_FMT_VER_INVALID;
|
||||
net_proto_version = 0;
|
||||
pending_serialization_version = SER_FMT_VER_INVALID;
|
||||
m_nearest_unsent_d = 0;
|
||||
m_nearest_unsent_reset_timer = 0.0;
|
||||
|
Loading…
Reference in New Issue
Block a user