mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-02-20 19:02:37 +00:00
Add a few more splitscreen checks here
This commit is contained in:
parent
d2ec4d2be5
commit
bb9e77f2a1
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…
Reference in a new issue