mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 10:08:18 +00:00
Fix start info spam protection
This commit is contained in:
parent
987723316a
commit
0f5a4f8428
|
@ -1593,6 +1593,8 @@ void CGameContext::OnMessage(int MsgID, CUnpacker *pUnpacker, int ClientID)
|
||||||
{
|
{
|
||||||
//if(pPlayer->m_IsReady)
|
//if(pPlayer->m_IsReady)
|
||||||
// return;
|
// return;
|
||||||
|
if(g_Config.m_SvSpamprotection && pPlayer->m_LastChangeInfo && pPlayer->m_LastChangeInfo+Server()->TickSpeed()*g_Config.m_SvInfoChangeDelay > Server()->Tick())
|
||||||
|
return;
|
||||||
|
|
||||||
CNetMsg_Cl_StartInfo *pMsg = (CNetMsg_Cl_StartInfo *)pRawMsg;
|
CNetMsg_Cl_StartInfo *pMsg = (CNetMsg_Cl_StartInfo *)pRawMsg;
|
||||||
pPlayer->m_LastChangeInfo = Server()->Tick();
|
pPlayer->m_LastChangeInfo = Server()->Tick();
|
||||||
|
|
Loading…
Reference in a new issue