From a62abd13e52322b8fcc2a46663e8cebb472033d7 Mon Sep 17 00:00:00 2001 From: CalebRose Date: Tue, 19 Nov 2024 09:36:35 -0800 Subject: [PATCH] Implementing case where cut contracts are skipped. --- managers/CapsheetManager.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/managers/CapsheetManager.go b/managers/CapsheetManager.go index 08bf119..6b50842 100644 --- a/managers/CapsheetManager.go +++ b/managers/CapsheetManager.go @@ -53,6 +53,10 @@ func AllocateCapsheets() { continue } contract := player.Contract + if contract.IsCut { + window += 1 + continue + } Capsheet.AddContractToCapsheet(contract) }