We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9fda56 commit f9fd6d8Copy full SHA for f9fd6d8
src/Options.py
@@ -238,6 +238,10 @@ def make_options_group() -> list[OptionGroup]:
238
base_item_loc_group = manual_option_groups.pop('Item & Location Options') #Put the custom options before the base AP options
239
base_item_loc_group.extend(item_and_loc_options)
240
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
+
245
for group, options in manual_option_groups.items():
246
option_groups.append(OptionGroup(group, options))
247
0 commit comments