mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-26 12:21:19 +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
12ee59bdfa
commit
0720264bc2
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…
Reference in a new issue