The Witness: Move the Easter Egg Hunt option group lower so that the tooltip isn't cut off (#4789)

This commit is contained in:
NewSoupVi
2025-04-05 17:48:18 +02:00
committed by GitHub
parent 3262984386
commit 0a44c3ec49

View File

@@ -625,7 +625,7 @@ if is_easter_time():
easter_special_option_group = OptionGroup("EASTER SPECIAL", [ easter_special_option_group = OptionGroup("EASTER SPECIAL", [
EasterEggHunt, EasterEggHunt,
]) ])
witness_option_groups = [easter_special_option_group, *witness_option_groups] witness_option_groups.insert(2, easter_special_option_group)
else: else:
silly_options_group = next(group for group in witness_option_groups if group.name == "Silly Options") silly_options_group = next(group for group in witness_option_groups if group.name == "Silly Options")
silly_options_group.options.append(EasterEggHunt) silly_options_group.options.append(EasterEggHunt)