Skip to content
Snippets Groups Projects

Only call P_CheckSurvivors() in tag gametypes

Merged LJ Sonic requested to merge fix-keep-body-tag into next
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -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