Skip to content

Commit

Permalink
Fixed previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Aspirata committed Jun 27, 2024
1 parent 7314290 commit 4d8101e
Show file tree
Hide file tree
Showing 5 changed files with 331 additions and 298 deletions.
8 changes: 4 additions & 4 deletions Mcblend Source/MCB_API.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,19 +136,19 @@ def update_default_pack(debug=None):

default_pack = "Minecraft 1.20.6"
default_path = os.path.join(resource_packs_directory, default_pack)
resource_packs[default_pack] = {"path": (default_path), "enabled": True}
resource_packs[default_pack] = {"path": (default_path), "type": "Texture", "enabled": True}

default_pack = "Bare Bones 1.20.6"
default_path = os.path.join(resource_packs_directory, default_pack)
resource_packs[default_pack] = {"path": (default_path), "enabled": False}
resource_packs[default_pack] = {"path": (default_path),"type": "Texture", "enabled": False}

default_pack = "Better Emission"
default_path = os.path.join(resource_packs_directory, default_pack)
resource_packs[default_pack] = {"path": (default_path), "enabled": True}
resource_packs[default_pack] = {"path": (default_path), "type": "PBR", "enabled": True}

default_pack = "Embrace Pixels 2.1"
default_path = os.path.join(resource_packs_directory, default_pack)
resource_packs[default_pack] = {"path": (default_path), "enabled": True}
resource_packs[default_pack] = {"path": (default_path), "type": "PBR", "enabled": True}

if debug is not None:
print(f"Default Pack: {default_pack} stored in {default_path}")
Expand Down
Loading

0 comments on commit 4d8101e

Please sign in to comment.