Make ring respawn a division

Lets it stay very long for 1v1 like we want, but not matter the closer it gets to 8 players. Tired of people spamming rings to compensate for this problem :V
This commit is contained in:
Sally Coolatta 2022-12-22 01:53:50 -05:00
parent 33167078c8
commit 9c9d2934c5

View file

@ -11461,7 +11461,7 @@ void P_RespawnSpecials(void)
}
else if (pcount > 1)
{
time = (120 - ((pcount-2) * 20)) * TICRATE;
time = (120 * TICRATE) / (pcount - 1);
// If the map is longer or shorter than 3 laps, then adjust ring respawn to account for this.
// 5 lap courses would have more retreaded ground, while 2 lap courses would have less.