From 773193434ef5b38fcfbd54befe77723b268621d2 Mon Sep 17 00:00:00 2001 From: CalebRose Date: Thu, 3 Sep 2026 10:18:40 -0700 Subject: [PATCH] setting ceiling between FBS and FCS redshirts --- managers/SyncManager.go | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/managers/SyncManager.go b/managers/SyncManager.go index 37d65cd..0e3648a 100644 --- a/managers/SyncManager.go +++ b/managers/SyncManager.go @@ -1235,8 +1235,12 @@ func AllocateAIRedshirts(seasonId string) { redshirtCount := 0 redshirts := make([]string, 20) + redshirtMax := 20 + if !team.IsFBS { + redshirtMax = 10 + } for _, target := range redshirtTargets { - if redshirtCount >= 20 { + if redshirtCount >= redshirtMax { break } @@ -1281,7 +1285,7 @@ func isAboveMinPositionCount(position string, positionCountMap map[string]int) b case "QB", "RB", "FB", "TE", "FS", "SS", "C": minPositionThreshold = 3 case "OT", "OG", "DE", "DT", "OLB", "ILB": - minPositionThreshold = 4 + minPositionThreshold = 5 case "WR", "CB": minPositionThreshold = 5 default: