P_CheckRacers: don't use 30 second countdown in cooperative game modes (Special Stages)

This commit is contained in:
James R. 2023-09-11 03:21:23 -07:00
parent e1142b569c
commit c844d00b40

View file

@ -1134,7 +1134,7 @@ boolean P_CheckRacers(void)
// SO, we're not done playing.
// Let's see if it's time to start the death counter!
if (racecountdown == 0)
if (racecountdown == 0 && K_Cooperative() == false)
{
// If the winners are all done, then start the death timer.
UINT8 winningPos = max(1, numPlaying / 2);