mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Faster
This commit is contained in:
parent
c542e0453c
commit
2a563d6f25
1 changed files with 2 additions and 2 deletions
|
|
@ -2290,7 +2290,7 @@ void Y_VoteTicker(void)
|
||||||
UINT8 tempvotes[MAXPLAYERS];
|
UINT8 tempvotes[MAXPLAYERS];
|
||||||
UINT8 numvotes = 0;
|
UINT8 numvotes = 0;
|
||||||
|
|
||||||
if (votetic % (TICRATE/3) != 0)
|
if (votetic % 5)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
for (i = 0; i < MAXPLAYERS; i++)
|
for (i = 0; i < MAXPLAYERS; i++)
|
||||||
|
|
@ -2301,7 +2301,7 @@ void Y_VoteTicker(void)
|
||||||
numvotes++;
|
numvotes++;
|
||||||
}
|
}
|
||||||
|
|
||||||
randomanim = tempvotes[((pickedvote + ((voteendtic-votetic) / (TICRATE/3))) % numvotes)];
|
randomanim = tempvotes[((pickedvote + ((voteendtic-votetic) / 5)) % numvotes)];
|
||||||
S_StartSound(NULL, sfx_s3k5b);
|
S_StartSound(NULL, sfx_s3k5b);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue