Fix pack version from 61 to 46
All checks were successful
SteamWarCI Build successful

This commit is contained in:
2025-06-12 22:15:36 +02:00
parent 82ba75fae7
commit ce09d3bc6d
34 changed files with 0 additions and 0 deletions

9
46/build.py Normal file
View File

@ -0,0 +1,9 @@
import os
current_dir = os.getcwd()
# Removing all old item Model json files, since they are now located in 'assets/minecraft/items' and are a different format!
itemModelsDir = os.path.join(current_dir, "assets/minecraft/models/item")
jsonFiles = [name for name in os.listdir(itemModelsDir) if os.path.isfile(os.path.join(itemModelsDir, name)) and name.endswith(".json") ]
for jsonFile in jsonFiles:
os.remove(os.path.join(itemModelsDir, jsonFile))