9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2026-01-06 15:51:30 +00:00

remove old system property

This commit is contained in:
Julian Krings
2025-09-02 22:14:59 +02:00
parent eb184983de
commit 176d3a5f9f

View File

@@ -63,7 +63,6 @@ val serverMaxHeap = "8G"
//Valid values are: none, truecolor, indexed256, indexed16, indexed8
val color = "truecolor"
val errorReporting = findProperty("errorReporting") as Boolean? ?: false
val scriptVersion = findProperty("scriptVersion") as String? ?: "master-SNAPSHOT"
val nmsBindings = mapOf(
"v1_21_R5" to "1.21.7-R0.1-SNAPSHOT",
@@ -110,7 +109,6 @@ nmsBindings.forEach { key, value ->
systemProperty("net.kyori.ansi.colorLevel", color)
systemProperty("com.mojang.eula.agree", true)
systemProperty("iris.suppressReporting", !errorReporting)
systemProperty("iris.scriptVersion", scriptVersion)
jvmArgs("-javaagent:${project(":core:agent").tasks.jar.flatMap { it.archiveFile }.get().asFile.absolutePath}")
}
}