From 56363ea7e7d7fd95c04763c80cdacfdfb5893a44 Mon Sep 17 00:00:00 2001 From: Katelyn Gigante Date: Thu, 18 Dec 2025 06:09:35 +1100 Subject: [PATCH] OptionsCreator: Respect World.hidden flag (#5754) --- OptionsCreator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OptionsCreator.py b/OptionsCreator.py index 6fafda824b..05a0d58ccd 100644 --- a/OptionsCreator.py +++ b/OptionsCreator.py @@ -632,7 +632,7 @@ class OptionsCreator(ThemedApp): self.create_options_panel(world_btn) for world, cls in sorted(AutoWorldRegister.world_types.items(), key=lambda x: x[0]): - if world == "Archipelago": + if cls.hidden: continue world_text = MDButtonText(text=world, size_hint_y=None, width=dp(150), pos_hint={"x": 0.03, "center_y": 0.5})