From 06964794169219c1797df8bebebbfb6e4d7a1dc9 Mon Sep 17 00:00:00 2001 From: Sychic <47618543+Sychic@users.noreply.github.com> Date: Fri, 28 Jun 2024 06:39:49 -0400 Subject: [PATCH] Build: Fix `FMLModType` being incorrectly set to `LIBRARY` As of ML9, it would have to be `GAMELIBRARY` for it to be able to reference minecraft classes, however since we require shading and relocation on ML9 anyway, we may as well just remove it outright. Closes #70 GitHub: #73 --- build.gradle.kts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 0889d8b..6ad2cc2 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -24,9 +24,3 @@ tasks.withType { apiVersion = "1.6" } } - -tasks.jar { - manifest { - attributes(mapOf("FMLModType" to "LIBRARY")) - } -}