From 7d3715f27b438705aaa0dd02910b1e9512d0453e Mon Sep 17 00:00:00 2001 From: Wyvest Date: Sun, 22 Oct 2023 15:08:03 -0400 Subject: [PATCH] Update build.gradle.kts --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index 185f6c8..ed220ed 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -182,7 +182,7 @@ tasks { "ModSide" to "CLIENT", // We aren't developing a server-side mod, so this is fine. "ForceLoadAsMod" to true, // We want to load this jar as a mod, so we force Forge to do so. "TweakOrder" to "0", // Makes sure that the OneConfig launch wrapper is loaded as soon as possible. - "MixinConfigs" to "mixin.${mod_id}.json", // We want to use our mixin configuration, so we specify it here. + "MixinConfigs" to "mixins.${mod_id}.json", // We want to use our mixin configuration, so we specify it here. "TweakClass" to "cc.polyfrost.oneconfig.loader.stage0.LaunchWrapperTweaker" // Loads the OneConfig launch wrapper. ) }