mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-17 21:48:19 +00:00
Merge pull request #9012 from ChillerDragon/pr_fix_sixup_drop
Fix 0.7 clients being dropped
This commit is contained in:
commit
3d8bb6f3b2
|
@ -1525,7 +1525,7 @@ void CServer::ProcessClientPacket(CNetChunk *pPacket)
|
|||
return;
|
||||
}
|
||||
|
||||
if(!m_aClients[ClientId].m_GotDDNetVersionPacket)
|
||||
if(!m_aClients[ClientId].m_GotDDNetVersionPacket && !IsSixup(ClientId))
|
||||
{
|
||||
DropOldClient(ClientId);
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue