We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38b0f85 commit 89882d0Copy full SHA for 89882d0
main.py
@@ -412,9 +412,9 @@ def __init__(self):
412
# --------------------------------------------
413
414
# Load indexes of blocks and items from source
415
- with open("./assets/uvs/atlas.items.vanilla.uvs.json", "r") as f:
+ with open(os.path.join(self.app_path, "assets/uvs/atlas.items.vanilla.uvs.json"), "r") as f:
416
self.items = json.load(f)
417
- with open("./assets/uvs/atlas.terrain.vanilla.uvs.json", "r") as f:
+ with open(os.path.join(self.app_path, "assets/uvs/atlas.terrain.vanilla.uvs.json"), "r") as f:
418
self.blocks = json.load(f)
419
420
# Load resources
0 commit comments