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.
This commit is contained in:
Sage Vaillancourt 2025-02-20 00:16:32 -05:00
parent 08a3189780
commit e45231dadd
1 changed files with 3 additions and 3 deletions

View File

@ -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