aboutsummaryrefslogtreecommitdiff
path: root/build.gradle.kts
diff options
context:
space:
mode:
authorILikePlayingGames <22475143+ILikePlayingGames@users.noreply.github.com>2023-08-12 22:57:57 -0400
committerILikePlayingGames <22475143+ILikePlayingGames@users.noreply.github.com>2023-08-12 22:57:57 -0400
commitae3d0d29754fe541fee2a2da507f1c29237df6ee (patch)
tree4170786159e7009170d34f39b7ab173086d03d2b /build.gradle.kts
parent7c72c125a483b870565d047cb8f2ac52ca75b747 (diff)
downloadforge1.8.9template-ae3d0d29754fe541fee2a2da507f1c29237df6ee.tar.gz
forge1.8.9template-ae3d0d29754fe541fee2a2da507f1c29237df6ee.tar.bz2
forge1.8.9template-ae3d0d29754fe541fee2a2da507f1c29237df6ee.zip
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.
Diffstat (limited to 'build.gradle.kts')
-rw-r--r--build.gradle.kts1
1 files changed, 0 insertions, 1 deletions
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 {