Signed is unsigned, cool

This commit is contained in:
James R 2020-01-24 16:44:53 -08:00
parent 0beae26e9d
commit 87a278ad02

View file

@ -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);
}