From 653c07ccb5446fcd45c720e285bcd209a3dd4ab7 Mon Sep 17 00:00:00 2001 From: Aspirata <102383379+Aspirata@users.noreply.github.com> Date: Fri, 12 Jul 2024 23:55:48 +0700 Subject: [PATCH] Fixed dev_resource_packs_directory --- Mcblend Source/Resource_Packs.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Mcblend Source/Resource_Packs.py b/Mcblend Source/Resource_Packs.py index 92637310..1239e5d1 100644 --- a/Mcblend Source/Resource_Packs.py +++ b/Mcblend Source/Resource_Packs.py @@ -76,13 +76,13 @@ def find_mc(): resource_packs[default_pack] = {"path": (default_path), "type": "PBR", "enabled": True} else: default_pack = "Bare Bones 1.21" - default_path = os.path.join(dev_resource_packs_directory, default_pack) + default_path = os.path.join(resource_packs_directory, default_pack) resource_packs[default_pack] = {"path": (default_path),"type": "Texture", "enabled": False} default_pack = "Better Emission" - default_path = os.path.join(dev_resource_packs_directory, default_pack) + default_path = os.path.join(resource_packs_directory, default_pack) resource_packs[default_pack] = {"path": (default_path), "type": "PBR", "enabled": True} default_pack = "Embrace Pixels PBR" - default_path = os.path.join(dev_resource_packs_directory, default_pack) + default_path = os.path.join(resource_packs_directory, default_pack) resource_packs[default_pack] = {"path": (default_path), "type": "PBR", "enabled": True} \ No newline at end of file