Added new parameter in gradle.properties = "mixin_into_mods"
- `true` means MixinBooter will be depended on
This commit is contained in:
parent
d397d55bed
commit
c277dbf15c
2 changed files with 5 additions and 0 deletions
|
@ -79,6 +79,10 @@ dependencies {
|
|||
}
|
||||
annotationProcessor 'org.spongepowered:mixin:0.8.3:processor'
|
||||
}
|
||||
if (project.mixin_into_mods) {
|
||||
deobfCompile 'zone.rong:mixinbooter:4.1'
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
sourceSets {
|
||||
|
|
|
@ -13,6 +13,7 @@ use_coremod = false
|
|||
use_assetmover = false
|
||||
|
||||
pack_mixins_in_jar = false
|
||||
mixin_into_mods = false
|
||||
|
||||
# Coremod Arguments
|
||||
coremod_plugin_class_name =
|
Loading…
Reference in a new issue