We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
enableMixins()
1 parent 82d826d commit 06273d9Copy full SHA for 06273d9
build.gradle
@@ -402,7 +402,10 @@ configurations {
402
dependencies {
403
if (usesMixins.toBoolean() || forceEnableMixins.toBoolean()) {
404
implementation 'zone.rong:mixinbooter:7.0'
405
- String mixin = modUtils.enableMixins('org.spongepowered:mixin:0.8.3', "mixins.${modId}.refmap.json")
+ String mixin = 'org.spongepowered:mixin:0.8.3'
406
+ if (usesMixins.toBoolean()) {
407
+ mixin = modUtils.enableMixins(mixin, "mixins.${modId}.refmap.json")
408
+ }
409
410
api (mixin) {
411
transitive = false
0 commit comments