mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 04:21:47 +00:00
P_CheckRacers: don't use 30 second countdown in cooperative game modes (Special Stages)
This commit is contained in:
parent
e1142b569c
commit
c844d00b40
1 changed files with 1 additions and 1 deletions
|
|
@ -1134,7 +1134,7 @@ boolean P_CheckRacers(void)
|
||||||
// SO, we're not done playing.
|
// SO, we're not done playing.
|
||||||
// Let's see if it's time to start the death counter!
|
// 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.
|
// If the winners are all done, then start the death timer.
|
||||||
UINT8 winningPos = max(1, numPlaying / 2);
|
UINT8 winningPos = max(1, numPlaying / 2);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue