From a86c4eb7b1d5c3d71a0465a99351d60c23b548a4 Mon Sep 17 00:00:00 2001 From: Linnea Gräf Date: Fri, 19 Apr 2024 14:04:17 +0200 Subject: Fix devauth --- build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 797b4d98c..a71738130 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -116,7 +116,7 @@ fun RunConfig.setBaseConfig() { ) this.workingDir = runDir if (System.getenv("repo_action") != "true") { - this.jvmArgs.add("-Ddevauth.configdir=${rootProject.file(".devauth").absolutePath}") + this.jvmArgs.add("-Ddevauth.configDir=${rootProject.file(".devauth").absolutePath}") } this.env.putAll(parseEnvFile(file(".env"))) } @@ -213,7 +213,7 @@ dependencies { exclude(group = "org.jetbrains.kotlin") } - modRuntimeOnly("me.djtheredstoner:DevAuth-forge-legacy:1.1.0") + modRuntimeOnly("me.djtheredstoner:DevAuth-forge-legacy:1.2.0") modCompileOnly("com.github.hannibal002:notenoughupdates:4957f0b:all") { exclude(module = "unspecified") -- cgit