Skip to content

Commit

Permalink
Implementing case where cut contracts are skipped.
Browse files Browse the repository at this point in the history
  • Loading branch information
CalebRose committed Nov 19, 2024
1 parent a8bc6e4 commit a62abd1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions managers/CapsheetManager.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@ func AllocateCapsheets() {
continue
}
contract := player.Contract
if contract.IsCut {
window += 1
continue
}

Capsheet.AddContractToCapsheet(contract)
}
Expand Down

0 comments on commit a62abd1

Please sign in to comment.