change name

This commit is contained in:
onebeastchris 2024-06-17 19:13:53 +02:00
parent 2a27d25d9b
commit cd277daaf4
2 changed files with 4 additions and 3 deletions

View file

@ -13,6 +13,7 @@ modrinth {
changelog.set("A changelog can be found at https://github.com/GeyserMC/Geyser/commits") changelog.set("A changelog can be found at https://github.com/GeyserMC/Geyser/commits")
gameVersions.add(libs.minecraft.get().version as String) gameVersions.add(libs.minecraft.get().version as String)
failSilently.set(true) failSilently.set(true)
debugMode.set(true)
syncBodyFrom.set(rootProject.file("README.md").readText()) syncBodyFrom.set(rootProject.file("README.md").readText())
} }

View file

@ -47,9 +47,9 @@ subprojects {
else -> plugins.apply("geyser.base-conventions") else -> plugins.apply("geyser.base-conventions")
} }
// Not combined with platform-conventions as that // Not combined with platform-conventions as that also contains
// also contains viaproxy and standalone; both of which we cant publish to modrinth // platforms which we cant publish to modrinth
if (modrinthPlatforms.contains(this)) { if (modrinthPlatforms.contains(this)) {
plugins.apply("geyser.modrinth-uploading") plugins.apply("geyser.modrinth-uploading-conventions")
} }
} }