From c2fd9c7fe113f9c12ea214689b977de8d8ce6cfb Mon Sep 17 00:00:00 2001 From: onebeastchris Date: Thu, 31 Oct 2024 18:19:49 +0800 Subject: [PATCH] indicate 1.21.2/.3 support --- .../kotlin/floodgate-modded.platform-conventions.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-logic/src/main/kotlin/floodgate-modded.platform-conventions.gradle.kts b/build-logic/src/main/kotlin/floodgate-modded.platform-conventions.gradle.kts index 244027e5..420e17cb 100644 --- a/build-logic/src/main/kotlin/floodgate-modded.platform-conventions.gradle.kts +++ b/build-logic/src/main/kotlin/floodgate-modded.platform-conventions.gradle.kts @@ -134,6 +134,6 @@ modrinth { uploadFile.set(tasks.remapJar.get().destinationDirectory.get().asFile.resolve("${versionName(project)}.jar")) gameVersions.add(libs.minecraft.get().version as String) - gameVersions.add("1.21.1") + gameVersions.addAll("1.21.1", "1.21.2", "1.21.3") failSilently.set(false) }