mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-15 09:11:48 +00:00
Signed is unsigned, cool
This commit is contained in:
parent
53e2cfbde2
commit
c9bc3837f9
1 changed files with 1 additions and 1 deletions
|
@ -603,7 +603,7 @@ void P_Ticker(boolean run)
|
|||
if (players[i].quittime == 30 * TICRATE)
|
||||
P_CheckSurvivors();
|
||||
|
||||
if (server && players[i].quittime >= FixedMul(cv_rejointimeout.value, 60 * TICRATE)
|
||||
if (server && players[i].quittime >= (tic_t)FixedMul(cv_rejointimeout.value, 60 * TICRATE)
|
||||
&& !(players[i].quittime % TICRATE))
|
||||
SendKick(i, KICK_MSG_PLAYER_QUIT);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue