From a5ca4f1611de17e61d3b77d22aae447f12846648 Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Wed, 17 Nov 2021 16:44:20 +0100 Subject: [PATCH] Options: document exclude locations and start location hints --- Options.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Options.py b/Options.py index a87618f9..9fc2da5a 100644 --- a/Options.py +++ b/Options.py @@ -379,6 +379,7 @@ class StartHints(ItemSet): class StartLocationHints(OptionSet): + """Start with these locations and their item prefilled into the !hint command""" displayname = "Start Location Hints" @@ -399,7 +400,7 @@ per_game_common_options = { "start_inventory": StartInventory, "start_hints": StartHints, "start_location_hints": StartLocationHints, - "exclude_locations": OptionSet + "exclude_locations": ExcludeLocations } if __name__ == "__main__":