From ae3d0d29754fe541fee2a2da507f1c29237df6ee Mon Sep 17 00:00:00 2001 From: ILikePlayingGames <22475143+ILikePlayingGames@users.noreply.github.com> Date: Sat, 12 Aug 2023 22:57:57 -0400 Subject: Fix mixin being added to launch arguments twice The loom mixin extension adds the mixin to the launch arguments automatically. Adding it in the launch config causes the argument to be added twice, which breaks launch logic. Adding the argument twice causes the first command line argument after the second mixin addition to be parsed incorrectly and therefore ignored. --- build.gradle.kts | 1 - 1 file changed, 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index 4f28bcb..a4acf05 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -28,7 +28,6 @@ loom { property("mixin.debug", "true") property("asmhelper.verbose", "true") arg("--tweakClass", "org.spongepowered.asm.launch.MixinTweaker") - arg("--mixin", "mixins.$modid.json") } } forge { -- cgit