From 14ac3f29c26a92ce52ca32aaf5848eeb84b54d9d Mon Sep 17 00:00:00 2001 From: Raven Szewczyk Date: Sat, 25 May 2024 14:59:04 +0100 Subject: Relocate KubaTech mixins --- gradle.properties | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'gradle.properties') diff --git a/gradle.properties b/gradle.properties index 75dd95ccff..4b18cf1244 100644 --- a/gradle.properties +++ b/gradle.properties @@ -83,16 +83,16 @@ apiPackage = accessTransformersFile = ggfab_at.cfg tectech_at.cfg # Provides setup for Mixins if enabled. If you don't know what mixins are: Keep it disabled! -usesMixins = false +usesMixins = true # Adds some debug arguments like verbose output and class export. -usesMixinDebug = false +usesMixinDebug = true # Specify the location of your implementation of IMixinConfigPlugin. Leave it empty otherwise. -mixinPlugin = +mixinPlugin = mixin.MixinPlugin # Specify the package that contains all of your Mixins. You may only place Mixins in this package or the build will fail! -mixinsPackage = +mixinsPackage = mixin.mixins # Specify the core mod entry class if you use a core mod. This class must implement IFMLLoadingPlugin! # This parameter is for legacy compatibility only @@ -104,7 +104,7 @@ coreModClass = asm.GTCorePlugin containsMixinsAndOrCoreModOnly = false # Enables Mixins even if this mod doesn't use them, useful if one of the dependencies uses mixins. -forceEnableMixins = true +forceEnableMixins = false # If enabled, you may use 'shadowCompile' for dependencies. They will be integrated into your jar. It is your # responsibility to check the license and request permission for distribution if required. -- cgit