mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-03-21 02:11:19 +00:00
Only call P_CheckSurvivors() in tag gametypes
This commit is contained in:
parent
ef53672deb
commit
31ce076411
1 changed files with 1 additions and 1 deletions
|
@ -600,7 +600,7 @@ void P_Ticker(boolean run)
|
|||
{
|
||||
players[i].quittime++;
|
||||
|
||||
if (players[i].quittime == 30 * TICRATE)
|
||||
if (players[i].quittime == 30 * TICRATE && G_TagGametype())
|
||||
P_CheckSurvivors();
|
||||
|
||||
if (server && players[i].quittime >= (tic_t)FixedMul(cv_rejointimeout.value, 60 * TICRATE)
|
||||
|
|
Loading…
Reference in a new issue