From d6fd99c0f046f0d5f9b3c71b0bae3cf5f43b3b83 Mon Sep 17 00:00:00 2001 From: Antonio Martinez Date: Sun, 31 Aug 2025 01:45:06 -0400 Subject: [PATCH] 3000-7000 neutral PWR -> 4000-7000 --- src/k_pwrlv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/k_pwrlv.c b/src/k_pwrlv.c index 99757cd3d..74c9685e1 100644 --- a/src/k_pwrlv.c +++ b/src/k_pwrlv.c @@ -86,7 +86,7 @@ static fixed_t K_CalculatePowerLevelInc(UINT16 you, UINT16 them, boolean won) fixed_t BASE_CHANGE = 20*FRACUNIT; // The base amount that ratings should change per comparison. Higher = more volatile - INT16 STABLE_RATE = 3000; // The fulcrum point between positive-sum and even rankings. + INT16 STABLE_RATE = 4000; // The fulcrum point between positive-sum and even rankings. INT16 CEILING_RATE = 7000; // The fulcrum point between even and negative-sum rankings. // % modifiers to gains and losses. Positive numbers mean you gain more when gaining and drain more when draining.