From ffe73324d7dc068f43e7c231d8c6ee28b1654d22 Mon Sep 17 00:00:00 2001 From: jameswst <67979826+mutilis@users.noreply.github.com> Date: Wed, 24 Dec 2025 14:36:44 +0100 Subject: [PATCH] fix(imports): Adjust ChickenRuns calculation for seasonal scoring --- src/boost/boost_import.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/boost/boost_import.go b/src/boost/boost_import.go index cec08e70..e19bddb7 100644 --- a/src/boost/boost_import.go +++ b/src/boost/boost_import.go @@ -224,7 +224,7 @@ func PopulateContractFromProto(contractProtoBuf *ei.Contract) ei.EggIncContract c.LengthInDays = int(days) c.ChickenRuns = int(min(20.0, math.Ceil((days*float64(c.MaxCoopSize))/2.0))) if c.SeasonalScoring == ei.SeasonalScoringNerfed { - c.ChickenRuns = c.MaxCoopSize - 1 + c.ChickenRuns = min(20, c.MaxCoopSize-1) } c.ParadeChickenRuns = c.ChickenRuns - (c.MaxCoopSize - 1)