Skip to content

Commit

Permalink
Add quilt to supported loaders for fabric
Browse files Browse the repository at this point in the history
Blanket assumption that it'll work
  • Loading branch information
dhyces committed Nov 13, 2024
1 parent 505fe9f commit 31ed30b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ if (hasProperty("modrinth_write_version_pat")) {
versionType = publish_type
uploadFile.set(tasks.remapJar)
gameVersions = List.of(libs.versions.publish.range.get().split(","))
loaders = List.of("fabric")
loaders = List.of("fabric", "quilt")
changelog = rootProject.file("changelog.md").text
additionalFiles = List.of(tasks.named("sourcesJar"), tasks.named("javadocJar"))
detectLoaders = false
Expand All @@ -130,6 +130,7 @@ if (hasProperty("curseforge_publishing_token")) {
mainFile.changelog = rootProject.file("changelog.md").text
mainFile.changelogType = "markdown"
mainFile.addModLoader("Fabric")
mainFile.addModLoader("Quilt")
mainFile.addJavaVersion("Java ${java.toolchain.languageVersion.get()}")
mainFile.addGameVersion(libs.versions.minecraft.release.get())
debugMode = publish_debug.toBoolean()
Expand Down

0 comments on commit 31ed30b

Please sign in to comment.