From 3c36074b0dc5b7aeed7ab45943630753f1f4d691 Mon Sep 17 00:00:00 2001 From: MoSadie Date: Mon, 10 Jul 2023 17:25:42 -0700 Subject: [PATCH] Add libraries to the jar Turns out that fastutil was not included back then, so let's include it now! --- MinecraftMod/forge/1.8.9/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MinecraftMod/forge/1.8.9/build.gradle b/MinecraftMod/forge/1.8.9/build.gradle index 03e60a2..463a082 100644 --- a/MinecraftMod/forge/1.8.9/build.gradle +++ b/MinecraftMod/forge/1.8.9/build.gradle @@ -79,7 +79,7 @@ dependencies { jar { configurations.shade.each { dep -> from(project.zipTree(dep)){ - exclude 'META-INF', 'META-INF/**', 'com/google/gson/**', 'it/unimi/dsi/fastutil/**' // Hacky solution to the extra dependencies being included. + exclude 'META-INF', 'META-INF/**' } } }