Skip to content

Commit 0be660a

Browse files
authored
fix note sometimes being in the changelog bullet points
1 parent 03fe7c3 commit 0be660a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ publishMods {
159159
val mcVersions = mod.prop("mc_targets").split(",")
160160

161161
changelog = rootProject.file("CHANGES.md").readText()
162-
if(minecraft == "1.16.5" && isForge) changelog = changelog.get() + "\nNOTE: You must disable the early loading screen manually, this can be done by adding \"-Dfml.earlyprogresswindow=false\" to your java arguments or by installing the [No Early loading progress](https://www.curseforge.com/minecraft/mc-mods/no-early-loading-progress) mod."
162+
if(minecraft == "1.16.5" && isForge) changelog = changelog.get() + "\n\nNOTE: You must disable the early loading screen manually, this can be done by adding \"-Dfml.earlyprogresswindow=false\" to your java arguments or by installing the [No Early loading progress](https://www.curseforge.com/minecraft/mc-mods/no-early-loading-progress) mod."
163163

164164
modLoaders.add(loader)
165165
if(isFabric) modLoaders.add("quilt")
@@ -196,4 +196,4 @@ publishMods {
196196

197197
//TODO: remove this when actually want to release
198198
dryRun = true
199-
}
199+
}

0 commit comments

Comments
 (0)