AutoWorld: automate item_names and location_names

This commit is contained in:
Fabian Dill
2021-07-29 20:27:41 +02:00
parent 4dde466364
commit e098b3c504
6 changed files with 16 additions and 19 deletions

View File

@@ -17,8 +17,6 @@ class MinecraftWorld(World):
game: str = "Minecraft"
options = minecraft_options
topology_present = True
item_names = frozenset(item_table)
location_names = frozenset(advancement_table)
item_name_to_id = {name: data.code for name, data in item_table.items()}
location_name_to_id = {name: data.id for name, data in advancement_table.items()}