diff --git a/build-logic/src/main/kotlin/geyser.modrinth-uploading.gradle.kts b/build-logic/src/main/kotlin/geyser.modrinth-uploading-conventions.gradle.kts similarity index 96% rename from build-logic/src/main/kotlin/geyser.modrinth-uploading.gradle.kts rename to build-logic/src/main/kotlin/geyser.modrinth-uploading-conventions.gradle.kts index a4a8cd7d6..4656b3134 100644 --- a/build-logic/src/main/kotlin/geyser.modrinth-uploading.gradle.kts +++ b/build-logic/src/main/kotlin/geyser.modrinth-uploading-conventions.gradle.kts @@ -13,6 +13,7 @@ modrinth { changelog.set("A changelog can be found at https://github.com/GeyserMC/Geyser/commits") gameVersions.add(libs.minecraft.get().version as String) failSilently.set(true) + debugMode.set(true) syncBodyFrom.set(rootProject.file("README.md").readText()) } \ No newline at end of file diff --git a/build.gradle.kts b/build.gradle.kts index 83d8aa053..dfbf9837f 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -47,9 +47,9 @@ subprojects { else -> plugins.apply("geyser.base-conventions") } - // Not combined with platform-conventions as that - // also contains viaproxy and standalone; both of which we cant publish to modrinth + // Not combined with platform-conventions as that also contains + // platforms which we cant publish to modrinth if (modrinthPlatforms.contains(this)) { - plugins.apply("geyser.modrinth-uploading") + plugins.apply("geyser.modrinth-uploading-conventions") } } \ No newline at end of file