diff --git a/build.gradle.kts b/build.gradle.kts index a0ecc6a7a..682335c2a 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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}") } }