mirror of
https://github.com/minetest/minetest.git
synced 2024-12-25 07:32:24 +01:00
Remove old network code (#5921)
This commit is contained in:
parent
dfd79c086b
commit
a6678d6e5a
@ -677,17 +677,6 @@ void Server::handleCommand_RequestMedia(NetworkPacket* pkt)
|
|||||||
void Server::handleCommand_ClientReady(NetworkPacket* pkt)
|
void Server::handleCommand_ClientReady(NetworkPacket* pkt)
|
||||||
{
|
{
|
||||||
u16 peer_id = pkt->getPeerId();
|
u16 peer_id = pkt->getPeerId();
|
||||||
u16 peer_proto_ver = getClient(peer_id, CS_InitDone)->net_proto_version;
|
|
||||||
|
|
||||||
// clients <= protocol version 22 did not send ready message,
|
|
||||||
// they're already initialized
|
|
||||||
if (peer_proto_ver <= 22) {
|
|
||||||
infostream << "Client sent message not expected by a "
|
|
||||||
<< "client using protocol version <= 22,"
|
|
||||||
<< "disconnecting peer_id: " << peer_id << std::endl;
|
|
||||||
m_con.DisconnectPeer(peer_id);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
PlayerSAO* playersao = StageTwoClientInit(peer_id);
|
PlayerSAO* playersao = StageTwoClientInit(peer_id);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user