From ee5a60f6f5509780e816be2c75cc32cbc7acc549 Mon Sep 17 00:00:00 2001 From: Octol1ttle Date: Fri, 10 May 2024 20:26:43 +0500 Subject: [PATCH] fix: don't allow 1.20-1.20.4 version to run on 1.20.5+ --- src/main/resources/fabric.mod.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 02498b65..9690ce05 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -37,7 +37,7 @@ "depends": { "fabricloader": ">=0.15.3", "fabric-api": "*", - "minecraft": "^1.20.0", + "minecraft": ">=1.20.0 <1.20.5", "java": ">=17", "yet_another_config_lib_v3": "*" },