From 80f2ed1872c4fadf0662e1698743abfa82da10d3 Mon Sep 17 00:00:00 2001 From: VelocitOni Date: Sun, 31 Aug 2025 00:39:40 -0400 Subject: [PATCH] Adjusted some numbers Made G1 a higher threshold, forgot how good it feels now. --- src/k_pwrlv.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/k_pwrlv.c b/src/k_pwrlv.c index b480fa020..746439de5 100644 --- a/src/k_pwrlv.c +++ b/src/k_pwrlv.c @@ -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;