We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31f1e6e commit d5501cdCopy full SHA for d5501cd
2 files changed
build.gradle.kts
@@ -5,7 +5,7 @@ val publishType = if (mod.hasProp("build.release_type")) mod.prop("build.release
5
val isBeta = publishType != null && publishType == "beta"
6
val isAlpha = publishType != null && publishType == "alpha"
7
val kotlinVersion: String by rootProject
8
-val allSupportedMC = mutableListOf(mod.minecraftVersion).apply {
+val allSupportedMC = mutableListOf<String>().apply {
9
if (mod.hasProp("minecraft_version.additional"))
10
this.addAll(mod.prop("minecraft_version.additional").split(',').map { it.trim() })
11
}
gradle.properties
@@ -1,5 +1,5 @@
1
# Done to increase the memory available to Gradle.
2
-org.gradle.jvmargs=-Xmx2G
+org.gradle.jvmargs=-Xmx6G
3
org.gradle.parallel=true
4
# Mod properties
0 commit comments