mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Adjusted some numbers
Made G1 a higher threshold, forgot how good it feels now.
This commit is contained in:
parent
f6ece4cce3
commit
80f2ed1872
1 changed files with 4 additions and 4 deletions
|
|
@ -580,16 +580,16 @@ void K_SetPowerLevelScrambles(SINT8 powertype)
|
|||
else if (avg >= 7000) // Sweaty strangers
|
||||
t = 4;
|
||||
|
||||
else if (avg >= 5000) // Experienced, lets see something interesting
|
||||
else if (avg >= 6500) // Experienced, lets see something interesting
|
||||
t = 3;
|
||||
|
||||
else if (avg >= 3000) // Getting into it, likely experienced but just building power
|
||||
else if (avg >= 4000) // Getting into it, likely experienced but just building power
|
||||
t = 2;
|
||||
|
||||
else if (avg < 1500 || (avg <= 2000 && min < 400)) // Baby Room, mandatory first impressions; or if mostly new & 1 guy is really coping
|
||||
else if (avg < 2000 || (avg <= 2500 && min < 600)) // Baby Room, mandatory first impressions; or if mostly new & 1 guy is really coping
|
||||
t = 0;
|
||||
|
||||
else if (avg >= 1500) // Transition point
|
||||
else if (avg >= 2000) // Transition point
|
||||
t = 1;
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue