update_skins.py

Remove leading zeros again
This commit is contained in:
bell07 2020-09-10 11:08:49 +02:00
父節點 8799ba0bd5
當前提交 77c00a0823
共有 1 個檔案被更改,包括 1 行新增1 行删除

查看文件

@ -20,7 +20,7 @@ else:
for json in data["skins"]:
id = str(json["id"]).zfill(4)
id = str(json["id"])
# Texture file
raw_data = base64.b64decode(json["img"])