move ALTTP to its own world folder

This commit is contained in:
Fabian Dill
2020-10-24 05:38:56 +02:00
parent 4f8c737eec
commit 1d58f54101
36 changed files with 253 additions and 228 deletions

View File

@@ -181,12 +181,12 @@ def get_options() -> dict:
def get_item_name_from_id(code):
import Items
from worlds.alttp import Items
return Items.lookup_id_to_name.get(code, f'Unknown item (ID:{code})')
def get_location_name_from_address(address):
import Regions
from worlds.alttp import Regions
return Regions.lookup_id_to_name.get(address, f'Unknown location (ID:{address})')