Options: add option start_location_hints, works identical as start_hints, just for locations

This commit is contained in:
Fabian Dill
2021-10-03 14:40:25 +02:00
parent 0c59ad7e22
commit c937167a11
2 changed files with 15 additions and 9 deletions

View File

@@ -368,6 +368,10 @@ class StartHints(ItemSet):
displayname = "Start Hints"
class StartLocationHints(OptionSet):
displayname = "Start Location Hints"
class ExcludeLocations(OptionSet):
"""Prevent these locations from having an important item"""
displayname = "Excluded Locations"
@@ -379,6 +383,7 @@ per_game_common_options = {
"non_local_items": NonLocalItems,
"start_inventory": StartInventory,
"start_hints": StartHints,
"start_location_hints": StartLocationHints,
"exclude_locations": OptionSet
}