mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-22 02:00:11 +00:00
Tally skipping: allow in Match Race, disallow in replays
This commit is contained in:
parent
59fb8aad8c
commit
6b413e530f
1 changed files with 6 additions and 1 deletions
|
|
@ -1397,7 +1397,12 @@ void K_TickPlayerTally(player_t *player)
|
|||
boolean fastForwardInput = G_PlayerInputDown(G_LocalSplitscreenPartyPosition(player - players), gc_a, 0);
|
||||
boolean allowFastForward = player->tally.state > TALLY_ST_GOTTHRU_SLIDEIN
|
||||
&& player->tally.releasedFastForward
|
||||
&& grandprixinfo.gp
|
||||
// - Not allowed online so we don't have to do any
|
||||
// networking.
|
||||
// - Not allowed in replays because splitscreen party
|
||||
// doesn't exist and it's just simpler to not think
|
||||
// about.
|
||||
&& (!netgame && !demo.playback)
|
||||
&& player->tally.state != TALLY_ST_DONE;
|
||||
|
||||
if (fastForwardInput && allowFastForward)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue