diff --git a/Better-Leaves-Lite-1.0.zip b/Better-Leaves-Lite-1.0.zip index 8d12af9..5f1a9d4 100644 Binary files a/Better-Leaves-Lite-1.0.zip and b/Better-Leaves-Lite-1.0.zip differ diff --git a/gen_pack.py b/gen_pack.py index 7e59586..306dba4 100644 --- a/gen_pack.py +++ b/gen_pack.py @@ -138,7 +138,7 @@ def scanModsForTextures(): assetpath = root.split("assets")[1][1:] modid = assetpath.split("textures")[0].replace("/", "") if "textures/block" in root and infile.endswith(".png") and "leaves" in infile: - print(f"Found texture {assetpath+"/"+infile} in mod {modid}") + print(f"Found texture {assetpath}/{infile} in mod {modid}") inputfolder = os.path.join("./input/assets/", assetpath) os.makedirs(inputfolder, exist_ok=True) shutil.copyfile(os.path.join(root, infile), os.path.join(inputfolder, infile))