CVCotM: Fix determinism with Halve DSS Cards Placed (#5601)

This commit is contained in:
LiquidCat64
2025-11-03 11:31:36 -07:00
committed by GitHub
parent 7cd7111241
commit 97c07e91d1

View File

@@ -110,7 +110,7 @@ def get_item_counts(world: "CVCotMWorld") -> Dict[ItemClassification, Dict[str,
# If Halve DSS Cards Placed is on, determine which cards we will exclude here.
if world.options.halve_dss_cards_placed:
excluded_cards = list(ACTION_CARDS.union(ATTRIBUTE_CARDS))
excluded_cards = sorted(ACTION_CARDS.union(ATTRIBUTE_CARDS))
has_freeze_action = False
has_freeze_attr = False