We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd8d30b commit eb8a5e9Copy full SHA for eb8a5e9
1 file changed
build.gradle.kts
@@ -109,15 +109,7 @@ publishMods {
109
requires(*depends.toTypedArray())
110
}
111
112
- if (mod.minecraftVersion.contains("snapshot")) {
113
- val modifiedVersion = buildString {
114
- val oldVersion = mod.minecraftVersion
115
- val splitted = oldVersion.split("-")
116
- append(splitted[0] + "-snapshot")
117
- }
118
- minecraftVersions.add(modifiedVersion)
119
120
-
+ minecraftVersions.add(mod.minecraftVersion)
121
minecraftVersions.addAll(allSupportedMC)
122
123
0 commit comments