From 9b8fb79030a98dbae4695f8266d55c868bc3b847 Mon Sep 17 00:00:00 2001 From: bell07 Date: Thu, 10 Sep 2020 11:08:49 +0200 Subject: [PATCH] update_skins.py Remove leading zeros again --- updater/update_skins.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/updater/update_skins.py b/updater/update_skins.py index 8132cbb..8b760b7 100644 --- a/updater/update_skins.py +++ b/updater/update_skins.py @@ -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"])