Skip to content

Commit f9fd6d8

Browse files
committed
remove 'Game Options' from dev defined option groups
1 parent f9fda56 commit f9fd6d8

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/Options.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -238,6 +238,10 @@ def make_options_group() -> list[OptionGroup]:
238238
base_item_loc_group = manual_option_groups.pop('Item & Location Options') #Put the custom options before the base AP options
239239
base_item_loc_group.extend(item_and_loc_options)
240240

241+
if 'Game Options' in manual_option_groups.keys():
242+
# Archipelago automatically assign ungrouped options to this group unless its defined so by deleting it here we let AP recreate it later
243+
manual_option_groups.pop('Game Options')
244+
241245
for group, options in manual_option_groups.items():
242246
option_groups.append(OptionGroup(group, options))
243247

0 commit comments

Comments
 (0)