From 3ad0a18fec9529c1c8fd027b5ed3baf6ac2b31c8 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Tue, 14 Mar 2023 18:52:41 +0100 Subject: no more patcher as a requirement --- build.gradle.kts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index 7a266d53e..9de2ab6fb 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -57,7 +57,9 @@ dependencies { annotationProcessor("org.spongepowered:mixin:0.8.4-SNAPSHOT") implementation(kotlin("stdlib-jdk8")) - implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4") + shadowImpl("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4") { + exclude(group = "org.jetbrains.kotlin") + } // If you don't want to log in with your real minecraft account, remove this line modRuntimeOnly("me.djtheredstoner:DevAuth-forge-legacy:1.1.0") -- cgit