From 77e6fa0010cb5014b80142c2c0a91b9ae72d28ed Mon Sep 17 00:00:00 2001 From: NewSoupVi <57900059+NewSoupVi@users.noreply.github.com> Date: Tue, 1 Apr 2025 21:09:59 +0200 Subject: [PATCH] The Witness: Move the Easter Egg Hunt option group lower so that the tooltip isn't cut off --- worlds/witness/options.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/witness/options.py b/worlds/witness/options.py index 1c2bc9324f..8fc87fd977 100644 --- a/worlds/witness/options.py +++ b/worlds/witness/options.py @@ -617,7 +617,7 @@ if is_easter_time(): easter_special_option_group = OptionGroup("EASTER SPECIAL", [ EasterEggHunt, ]) - witness_option_groups = [easter_special_option_group, *witness_option_groups] + witness_option_groups.insert(2, easter_special_option_group) else: silly_options_group = next(group for group in witness_option_groups if group.name == "Silly Options") silly_options_group.options.append(EasterEggHunt)