From 057e3723256ed3398083526b53df7669224c51ba Mon Sep 17 00:00:00 2001 From: Bryce Wilson Date: Thu, 15 Feb 2024 13:04:20 -0700 Subject: [PATCH] Pokemon Emerald: Shuffle initial TMs for diverse_balanced option (#2758) --- worlds/pokemon_emerald/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/worlds/pokemon_emerald/__init__.py b/worlds/pokemon_emerald/__init__.py index 5d50e0db..7a7596c0 100644 --- a/worlds/pokemon_emerald/__init__.py +++ b/worlds/pokemon_emerald/__init__.py @@ -279,6 +279,7 @@ class PokemonEmeraldWorld(World): def refresh_tm_choices() -> None: fill_item_candidates_by_category["TM"] = all_tm_choices.copy() self.random.shuffle(fill_item_candidates_by_category["TM"]) + refresh_tm_choices() # Create items for item in default_itempool: