From 8c020db07d939f207c2156661b68bc1b044b5af7 Mon Sep 17 00:00:00 2001 From: CaitSith2 Date: Fri, 19 Feb 2021 23:21:18 -0800 Subject: [PATCH] Add an identifier for triggers, to know which branch the seed is rolled on. --- Mystery.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Mystery.py b/Mystery.py index 92ab4182..873893f6 100644 --- a/Mystery.py +++ b/Mystery.py @@ -325,6 +325,7 @@ def roll_linked_options(weights: dict) -> dict: def roll_triggers(weights: dict) -> dict: weights = weights.copy() # make sure we don't write back to other weights sets in same_settings + weights["_Generator_Version"] = "Main" # Some means for triggers to know if the seed is on main or doors. for option_set in weights["triggers"]: try: key = get_choice("option_name", option_set)