Skip to content

Commit

Permalink
Fixed dev_resource_packs_directory
Browse files Browse the repository at this point in the history
  • Loading branch information
Aspirata committed Jul 12, 2024
1 parent 74605c1 commit 653c07c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Mcblend Source/Resource_Packs.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}

0 comments on commit 653c07c

Please sign in to comment.