From 13adff2e260e5784d04157091fefa049a4bf35a0 Mon Sep 17 00:00:00 2001 From: Martin Prokoph Date: Thu, 11 Dec 2025 16:28:57 +0100 Subject: [PATCH] fix: resourcepacks appearing as outdated --- common/src/main/resources/resourcepacks/bedrock/pack.mcmeta | 4 +++- common/src/main/resources/resourcepacks/legacy/pack.mcmeta | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/common/src/main/resources/resourcepacks/bedrock/pack.mcmeta b/common/src/main/resources/resourcepacks/bedrock/pack.mcmeta index e19eb0d..4586712 100644 --- a/common/src/main/resources/resourcepacks/bedrock/pack.mcmeta +++ b/common/src/main/resources/resourcepacks/bedrock/pack.mcmeta @@ -1,7 +1,9 @@ { "pack": { "pack_format": 15, - "supported_formats": [15, 999], + "supported_formats": [15, 255], + "min_format": 15, + "max_format": 255, "description": "Makes controller tooltips use similar icons to Bedrock Edition" } } diff --git a/common/src/main/resources/resourcepacks/legacy/pack.mcmeta b/common/src/main/resources/resourcepacks/legacy/pack.mcmeta index c37549f..e295e37 100644 --- a/common/src/main/resources/resourcepacks/legacy/pack.mcmeta +++ b/common/src/main/resources/resourcepacks/legacy/pack.mcmeta @@ -1,7 +1,9 @@ { "pack": { "pack_format": 15, - "supported_formats": [15, 999], + "supported_formats": [15, 255], + "min_format": 15, + "max_format": 255, "description": "Makes controller icons look similar to Legacy Console Edit." } }