From 0b7a4ef86fa5acae9a90fb3cedfb2ccb360d0f02 Mon Sep 17 00:00:00 2001 From: Martin Prokoph Date: Tue, 23 Sep 2025 12:38:27 +0200 Subject: [PATCH] fix: support 1.21.9 pack format changes --- input/pack.mcmeta | 8 +++++--- pack.mcmeta | 8 +++++--- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/input/pack.mcmeta b/input/pack.mcmeta index d3b4674..5ba4a86 100644 --- a/input/pack.mcmeta +++ b/input/pack.mcmeta @@ -1,7 +1,9 @@ { "pack": { "pack_format": 15, - "supported_formats": [15, 99], - "description": "§2Version ${version} §a${edition}\n§e©Motschen ${year} | MIT Licence" + "supported_formats": [15, 255], + "min_format": 15, + "max_format": 255, + "description": "§2Version ${version}\n§e©Motschen ${year} | MIT Licence" } -} \ No newline at end of file +} diff --git a/pack.mcmeta b/pack.mcmeta index 69b0026..d591b7c 100755 --- a/pack.mcmeta +++ b/pack.mcmeta @@ -1,7 +1,9 @@ { "pack": { "pack_format": 15, - "supported_formats": [15, 99], - "description": "§2Version 8.0 §a\n§e©Motschen 2025 | MIT Licence" + "supported_formats": [15, 255], + "min_format": 15, + "max_format": 255, + "description": "§2Version 8.1\n§e©Motschen 2025 | MIT Licence" } -} \ No newline at end of file +}