From cff1c35d2964ec925146292ac00561d5d92eca1d Mon Sep 17 00:00:00 2001 From: Martin Prokoph Date: Tue, 23 Sep 2025 12:36:12 +0200 Subject: [PATCH] fix: support 1.21.9 pack format changes --- input/pack.mcmeta | 6 ++++-- pack.mcmeta | 8 +++++--- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/input/pack.mcmeta b/input/pack.mcmeta index d3b4674..f85415c 100644 --- a/input/pack.mcmeta +++ b/input/pack.mcmeta @@ -1,7 +1,9 @@ { "pack": { "pack_format": 15, - "supported_formats": [15, 99], + "supported_formats": [15, 255], + "min_format": 15, + "max_format": 255, "description": "§2Version ${version} §a${edition}\n§e©Motschen ${year} | MIT Licence" } -} \ No newline at end of file +} diff --git a/pack.mcmeta b/pack.mcmeta index fdde2ac..175a654 100644 --- a/pack.mcmeta +++ b/pack.mcmeta @@ -1,7 +1,9 @@ { "pack": { "pack_format": 15, - "supported_formats": [15, 99], - "description": "§2Version 9.3 §aVanilla Edition\n§e©Motschen 2025 | MIT Licence" + "supported_formats": [15, 255], + "min_format": 15, + "max_format": 255, + "description": "§2Version 9.4 §a§aVanilla Edition\n§e©Motschen 2025 | MIT Licence" } -} \ No newline at end of file +}