mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix botched tally rate increase
This commit is contained in:
parent
10a694cc0b
commit
6e49378bc8
1 changed files with 3 additions and 1 deletions
|
|
@ -2175,7 +2175,9 @@ void Y_Ticker(void)
|
|||
// Basic bitch points
|
||||
if (data.increase[data.num[q]])
|
||||
{
|
||||
if (std::max(0,data.increase[data.num[q]]-3))
|
||||
data.increase[data.num[q]] = std::max(data.increase[data.num[q]] - 3, 0);
|
||||
|
||||
if (data.increase[data.num[q]] != 0)
|
||||
kaching = false;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue