From e45231dadd4e7d0165141cbec8d983e45d343a84 Mon Sep 17 00:00:00 2001 From: Sage Vaillancourt Date: Thu, 20 Feb 2025 00:16:32 -0500 Subject: [PATCH] Lower MinCharge and idealPower Makes it easier to throw at top speed without having to flick the crank. Added a bit of a multiplier on the returned powerRatio, to compensate. --- src/pitching.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pitching.lua b/src/pitching.lua index 0ee818f..d45f600 100644 --- a/src/pitching.lua +++ b/src/pitching.lua @@ -114,10 +114,10 @@ end ----------------- throwMeter = { - MinCharge = 45, + MinCharge = 25, value = 0, - idealPower = 90, + idealPower = 50, lastReadThrow = nil, } @@ -140,7 +140,7 @@ function throwMeter:readThrow(chargeAmount) else accuracy = 1 -- Accuracy is perfect on slow throws end - return ratio, accuracy, math.abs(ratio - 1) < 0.05 + return ratio * 1.5, accuracy, math.abs(ratio - 1) < 0.05 end return nil, nil, false end