mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-23 05:51:58 +00:00
Tally skipping: make sure player is actually local splitscreen before doing button check
This commit is contained in:
parent
6b413e530f
commit
2af5f32a72
1 changed files with 2 additions and 1 deletions
|
|
@ -1394,7 +1394,8 @@ void K_InitPlayerTally(player_t *player)
|
|||
|
||||
void K_TickPlayerTally(player_t *player)
|
||||
{
|
||||
boolean fastForwardInput = G_PlayerInputDown(G_LocalSplitscreenPartyPosition(player - players), gc_a, 0);
|
||||
boolean fastForwardInput = !demo.playback && P_IsMachineLocalPlayer(player) &&
|
||||
G_PlayerInputDown(G_LocalSplitscreenPartyPosition(player - players), gc_a, 0);
|
||||
boolean allowFastForward = player->tally.state > TALLY_ST_GOTTHRU_SLIDEIN
|
||||
&& player->tally.releasedFastForward
|
||||
// - Not allowed online so we don't have to do any
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue