mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-01-29 20:50:38 +00:00
Another minor voting thing
This commit is contained in:
parent
29e4c6764d
commit
acb98b50c7
1 changed files with 2 additions and 2 deletions
|
@ -2372,7 +2372,7 @@ void Y_VoteTicker(void)
|
|||
{
|
||||
for (i = 0; i < MAXPLAYERS; i++)
|
||||
{
|
||||
if ((playeringame[i] && !players[i].spectator) && votes[i] == -1)
|
||||
if ((playeringame[i] && !players[i].spectator) && votes[i] == -1 && !splitscreen)
|
||||
votes[i] = 3;
|
||||
}
|
||||
}
|
||||
|
@ -2520,7 +2520,7 @@ void Y_SetupVoteFinish(SINT8 pick, SINT8 level)
|
|||
|
||||
for (i = 0; i < MAXPLAYERS; i++)
|
||||
{
|
||||
if ((playeringame[i] && !players[i].spectator) && votes[i] == -1)
|
||||
if ((playeringame[i] && !players[i].spectator) && votes[i] == -1 && !splitscreen)
|
||||
votes[i] = 3;
|
||||
|
||||
if (votes[i] == -1)
|
||||
|
|
Loading…
Reference in a new issue