Speed up sphere respawn

This commit is contained in:
Sally Coolatta 2020-10-24 21:45:35 -04:00
parent 2509d5a29c
commit 5db7b337d9

View file

@ -9967,7 +9967,11 @@ void P_RespawnSpecials(void)
if (gametyperules & GTR_SPHERES) if (gametyperules & GTR_SPHERES)
{ {
time = ((MAXPLAYERS+1) - pcount) * (2*TICRATE); if (pcount > 2)
time -= (5*TICRATE) * (pcount-2);
if (time < 5*TICRATE)
time = 5*TICRATE;
} }
else else
{ {