mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-02-21 03:11:24 +00:00
Faster
This commit is contained in:
parent
9088e3dbab
commit
8f74b1afcd
1 changed files with 2 additions and 2 deletions
|
@ -2290,7 +2290,7 @@ void Y_VoteTicker(void)
|
|||
UINT8 tempvotes[MAXPLAYERS];
|
||||
UINT8 numvotes = 0;
|
||||
|
||||
if (votetic % (TICRATE/3) != 0)
|
||||
if (votetic % 5)
|
||||
return;
|
||||
|
||||
for (i = 0; i < MAXPLAYERS; i++)
|
||||
|
@ -2301,7 +2301,7 @@ void Y_VoteTicker(void)
|
|||
numvotes++;
|
||||
}
|
||||
|
||||
randomanim = tempvotes[((pickedvote + ((voteendtic-votetic) / (TICRATE/3))) % numvotes)];
|
||||
randomanim = tempvotes[((pickedvote + ((voteendtic-votetic) / 5)) % numvotes)];
|
||||
S_StartSound(NULL, sfx_s3k5b);
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue