From a81a5fc4405894c4a4e836033443324ac73f81ab Mon Sep 17 00:00:00 2001 From: Michael McCarty Date: Sun, 8 Feb 2026 09:59:40 -0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20fix:=20remove=20redundant=20mult?= =?UTF-8?q?iplication=20in=20IHR=20calculation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/boost/estimate_time.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/boost/estimate_time.go b/src/boost/estimate_time.go index ec1e5d20..3e3421ac 100644 --- a/src/boost/estimate_time.go +++ b/src/boost/estimate_time.go @@ -424,7 +424,7 @@ func calculateSingleEstimate( } adjustedPop := max(populationForCR, population-crPopulation) - ihr := est.ihr * est.chalice * est.monocle * math.Pow(1.04, est.ihrSlots) * est.colIHR + ihr := est.ihr * est.chalice * math.Pow(1.04, est.ihrSlots) * est.colIHR ihr *= math.Pow(1.01, est.te) boostTime := adjustedPop / (ihr * 12 * (est.monocle * est.boostMultiplier)) / 60