mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-01-03 13:42:31 +00:00
Negate (netgame || multiplayer) condition for countdown to use defaultvalue instead of value per the specifics of the previous implementation
This commit is contained in:
parent
54de9c42db
commit
2a389acb19
1 changed files with 1 additions and 1 deletions
|
|
@ -1792,7 +1792,7 @@ void P_DoPlayerExit(player_t *player)
|
|||
}
|
||||
|
||||
if (i == MAXPLAYERS)
|
||||
countdown = (((netgame || multiplayer) ? cv_countdowntime.defaultvalue : cv_countdowntime.value)*TICRATE) + 1; // 30 seconds to finish, get going!
|
||||
countdown = ((!(netgame || multiplayer) ? cv_countdowntime.defaultvalue : cv_countdowntime.value)*TICRATE) + 1; // 30 seconds to finish, get going!
|
||||
}
|
||||
|
||||
if (cv_kartvoices.value)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue