From 97c07e91d11341073a3a4ff487944181e9149311 Mon Sep 17 00:00:00 2001 From: LiquidCat64 <74896918+LiquidCat64@users.noreply.github.com> Date: Mon, 3 Nov 2025 11:31:36 -0700 Subject: [PATCH] CVCotM: Fix determinism with Halve DSS Cards Placed (#5601) --- worlds/cvcotm/items.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/cvcotm/items.py b/worlds/cvcotm/items.py index bce2b3fc0c..edcbd16966 100644 --- a/worlds/cvcotm/items.py +++ b/worlds/cvcotm/items.py @@ -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