Remove useless condition

This commit is contained in:
Louis-Antoine 2020-10-27 20:28:54 +01:00
parent 395d1f1b8f
commit e178966367

View file

@ -5022,9 +5022,6 @@ void NetUpdate(void)
// Don't erase tics not acknowledged // Don't erase tics not acknowledged
counts = realtics; counts = realtics;
// Do not make tics while resynching
if (counts != -666)
{
if (maketic + counts >= firstticstosend + BACKUPTICS) if (maketic + counts >= firstticstosend + BACKUPTICS)
counts = firstticstosend+BACKUPTICS-maketic-1; counts = firstticstosend+BACKUPTICS-maketic-1;
@ -5038,9 +5035,6 @@ void NetUpdate(void)
neededtic = maketic; // The server is a client too neededtic = maketic; // The server is a client too
} }
else
hu_redownloadinggamestate = true;
}
} }
Net_AckTicker(); Net_AckTicker();