From 5f366792c394a5e17e07b08d2e44c3ed89f0288a Mon Sep 17 00:00:00 2001 From: arkonsadter Date: Sun, 21 Jun 2026 15:59:08 +0600 Subject: [PATCH] Use plain implementation for Fabric deps under unobfuscated Loom Loom 1.17 in unobfuscated mode does not register the modImplementation configuration: there is no remapping step that would need it. Use plain implementation for fabric-loader and fabric-api, matching the original work in 19b6ea5 that I had rolled back. --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 87d079b..ace90fd 100644 --- a/build.gradle +++ b/build.gradle @@ -30,8 +30,8 @@ repositories { dependencies { minecraft "com.mojang:minecraft:${project.minecraft_version}" - modImplementation "net.fabricmc:fabric-loader:${project.loader_version}" - modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}" + implementation "net.fabricmc:fabric-loader:${project.loader_version}" + implementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}" } processResources {