Skip to content

Commit b2692ab

Browse files
committed
2 parents 607329f + 0d899fb commit b2692ab

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
-419 KB
Binary file not shown.

main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -422,9 +422,9 @@ def __init__(self):
422422
# --------------------------------------------
423423

424424
# Load indexes of blocks and items from source
425-
with open("./assets/uvs/atlas.items.vanilla.uvs.json", "r") as f:
425+
with open(os.path.join(self.app_path, "assets/uvs/atlas.items.vanilla.uvs.json"), "r") as f:
426426
self.globalVars["items"] = json.load(f)
427-
with open("./assets/uvs/atlas.terrain.vanilla.uvs.json", "r") as f:
427+
with open(os.path.join(self.app_path, "assets/uvs/atlas.terrain.vanilla.uvs.json"), "r") as f:
428428
self.globalVars["blocks"] = json.load(f)
429429

430430
# Load resources

0 commit comments

Comments
 (0)