mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-01-16 19:52:27 +00:00
PT_SAY: Fix index reuse in spam handler
This commit is contained in:
parent
346a778365
commit
eae6c2fa80
1 changed files with 1 additions and 1 deletions
|
|
@ -6840,7 +6840,7 @@ void NetUpdate(void)
|
|||
|
||||
if (server)
|
||||
{
|
||||
for(; (i<MAXPLAYERS); i++)
|
||||
for(i = 0; i < MAXPLAYERS; i++)
|
||||
{
|
||||
if (stop_spamming[i] > 0)
|
||||
stop_spamming[i]--;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue