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

Signed is unsigned, cool

parent 53e2cfbd
No related branches found
No related tags found
No related merge requests found
......@@ -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);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment