From 16cfb9d11eb93e72674dd5bfef393ce602c41c55 Mon Sep 17 00:00:00 2001 From: Alice Isabel Date: Fri, 9 Feb 2024 17:34:53 -0300 Subject: [PATCH] Use `modLocalRuntime` instead of `modRuntimeOnly` modLocalRuntime follows the idea of being run at the devenv space more closely, and doesn't interfere with the rest of the loom cache. --- platform/fabric/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/fabric/build.gradle.kts b/platform/fabric/build.gradle.kts index b8b0f4c..61c45aa 100644 --- a/platform/fabric/build.gradle.kts +++ b/platform/fabric/build.gradle.kts @@ -48,7 +48,7 @@ dependencies { // Broken in server, but necessary for IDE to work (our jar, for some reason, isn't accepted by modImplementation) modImplementation("net.kyori:adventure-platform-fabric:5.9.0") // Custom version that backports the fix (runtime only, since in IDE we use the default version) - modRuntimeOnly(files("libs/adventure-platform-fabric-5.9.1-PC.jar")) + modLocalRuntime(files("libs/adventure-platform-fabric-5.9.1-PC.jar")) // Uncomment the following line to enable the deprecated Fabric API modules. // These are included in the Fabric API production distribution and allow you to update your mod to the latest modules at a later more convenient time.