allow more HK names in console commands

This commit is contained in:
Fabian Dill
2021-03-19 04:30:19 +01:00
parent 8d6bec8b9a
commit cdc330629b
3 changed files with 11 additions and 8 deletions

View File

@@ -14,7 +14,7 @@ lookup_any_item_name_to_id = {name: id for id, name in lookup_any_item_id_to_nam
from .alttp import Regions
from .hk import Locations
lookup_any_location_id_to_name = {**Regions.lookup_id_to_name, **Locations.lookup_id_to_name}
lookup_any_location_name_to_id = {name: id for id, name in lookup_any_location_id_to_name.items()}
network_data_package = {"lookup_any_location_id_to_name": lookup_any_location_id_to_name,
"lookup_any_item_id_to_name": lookup_any_item_id_to_name,
"version": 1}