From 81e018ae44347d47c65cffc8fc5d6c0167299ffe Mon Sep 17 00:00:00 2001 From: chris Date: Fri, 6 Dec 2024 03:04:44 +0800 Subject: [PATCH] Indicate 1.21.4 support on modrinth --- .../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 e2a1d82..56f946a 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 @@ -133,6 +133,6 @@ modrinth { syncBodyFrom.set(rootProject.file("README.md").readText()) uploadFile.set(tasks.remapJar.get().destinationDirectory.get().asFile.resolve("${versionName(project)}.jar")) - gameVersions.add(libs.minecraft.get().version as String) + gameVersions.addAll(libs.minecraft.get().version as String, "1.21.4") failSilently.set(false) }