mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 01:58:19 +00:00
Fix old-style DDNet version message sending
Forgot to invert a condition in
49bc150afd
.
Fixes #4629.
This commit is contained in:
parent
314b6d6da3
commit
b92f794e3e
|
@ -1573,7 +1573,7 @@ void CGameClient::OnNewSnapshot()
|
|||
|
||||
for(int i = 0; i < 2; i++)
|
||||
{
|
||||
if(!m_DDRaceMsgSent[i] && m_Snap.m_pLocalInfo)
|
||||
if(m_DDRaceMsgSent[i] || !m_Snap.m_pLocalInfo)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue