round of post-test fixes

This commit is contained in:
Fabian Dill
2021-07-23 20:04:51 +02:00
parent c99a689504
commit 39a5921522
9 changed files with 14 additions and 12 deletions

View File

@@ -1,6 +1,7 @@
import json
import os
with open('worlds/subnautica/locations.json', 'r') as file:
with open(os.path.join(os.path.dirname(__file__), 'locations.json'), 'r') as file:
location_table = json.loads(file.read())
lookup_id_to_name = {}