mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-08 06:36:10 +00:00
Add a few more splitscreen checks here
This commit is contained in:
parent
bf6c2ccce3
commit
4a33e1707e
1 changed files with 2 additions and 2 deletions
|
|
@ -918,12 +918,12 @@ static void K_KartItemRoulette(player_t *player, ticcmd_t *cmd)
|
|||
if (player == &players[secondarydisplayplayer])
|
||||
PLAYROULETTESND;
|
||||
}
|
||||
else if (players[thirddisplayplayer].kartstuff[k_itemroulette])
|
||||
else if (players[thirddisplayplayer].kartstuff[k_itemroulette] && splitscreen > 1)
|
||||
{
|
||||
if (player == &players[thirddisplayplayer])
|
||||
PLAYROULETTESND;
|
||||
}
|
||||
else if (players[fourthdisplayplayer].kartstuff[k_itemroulette])
|
||||
else if (players[fourthdisplayplayer].kartstuff[k_itemroulette] && splitscreen > 2)
|
||||
{
|
||||
if (player == &players[fourthdisplayplayer])
|
||||
PLAYROULETTESND;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue