mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-05-10 19:01:50 +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])
|
if (player == &players[secondarydisplayplayer])
|
||||||
PLAYROULETTESND;
|
PLAYROULETTESND;
|
||||||
}
|
}
|
||||||
else if (players[thirddisplayplayer].kartstuff[k_itemroulette])
|
else if (players[thirddisplayplayer].kartstuff[k_itemroulette] && splitscreen > 1)
|
||||||
{
|
{
|
||||||
if (player == &players[thirddisplayplayer])
|
if (player == &players[thirddisplayplayer])
|
||||||
PLAYROULETTESND;
|
PLAYROULETTESND;
|
||||||
}
|
}
|
||||||
else if (players[fourthdisplayplayer].kartstuff[k_itemroulette])
|
else if (players[fourthdisplayplayer].kartstuff[k_itemroulette] && splitscreen > 2)
|
||||||
{
|
{
|
||||||
if (player == &players[fourthdisplayplayer])
|
if (player == &players[fourthdisplayplayer])
|
||||||
PLAYROULETTESND;
|
PLAYROULETTESND;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue