Skip to content
Snippets Groups Projects
Commit c9bc3837 authored by James R.'s avatar James R.
Browse files

Signed is unsigned, cool

parent 53e2cfbd
Branches
Tags
No related merge requests found
...@@ -603,7 +603,7 @@ void P_Ticker(boolean run) ...@@ -603,7 +603,7 @@ void P_Ticker(boolean run)
if (players[i].quittime == 30 * TICRATE) if (players[i].quittime == 30 * TICRATE)
P_CheckSurvivors(); 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)) && !(players[i].quittime % TICRATE))
SendKick(i, KICK_MSG_PLAYER_QUIT); SendKick(i, KICK_MSG_PLAYER_QUIT);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment