File tree Expand file tree Collapse file tree 3 files changed +10
-8
lines changed
org/mangorage/mangobotmixin/mixin Expand file tree Collapse file tree 3 files changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -73,16 +73,14 @@ repositories {
7373dependencies {
7474
7575 installer(' org.mangorage:installer:4.0.20' )
76- bootstrap(" org.mangorage:mangobotbootstrap:1.0.43-beta " )
76+ bootstrap(" org.mangorage:mangobotbootstrap:1.0.45 " )
7777
7878 plugin(" org.mangorage:mangobot:12.0.72" )
7979
8080
8181 // SpongeMixin...
82- library(' net.fabricmc:sponge-mixin:0.13.4+mixin.0.8.5' )
83-
84- library(' net.minecraftforge:modlauncher:10.2.4' )
85- library(' net.minecraftforge:securemodules:2.2.21' )
82+ library(' net.fabricmc:sponge-mixin:0.15.4+mixin.0.8.7' )
83+ library(' io.github.llamalad7:mixinextras-common:0.4.1' )
8684
8785 library(' org.ow2.asm:asm:9.8' )
8886 library(' org.ow2.asm:asm-util:9.8' )
Original file line number Diff line number Diff line change 66 requires org .spongepowered .mixin ;
77 requires org .mangorage .bootstrap ;
88 requires org .jetbrains .annotations ;
9+ requires mixinextras .common ;
910
1011 exports org .mangorage .mangobotmixin .plugin to org .mangorage .mangobotcore ;
11- exports org .mangorage .mangobotmixin .mixin .core to org .spongepowered .mixin ;
12- exports org .mangorage .mangobotmixin .mixin to org .spongepowered .mixin ;
13- exports org .mangorage .mangobotmixin .mixin .transformer to org .spongepowered .mixin ;
12+ exports org .mangorage .mangobotmixin .mixin .core to org .spongepowered .mixin , mixinextras . common ;
13+ exports org .mangorage .mangobotmixin .mixin to org .spongepowered .mixin , mixinextras . common ;
14+ exports org .mangorage .mangobotmixin .mixin .transformer to org .spongepowered .mixin , mixinextras . common ;
1415
1516
1617 provides org .mangorage .bootstrap .api .transformer .IClassTransformer with SpongeMixinClassTransformerImpl ;
Original file line number Diff line number Diff line change 11package org .mangorage .mangobotmixin .mixin ;
22
3+ import com .llamalad7 .mixinextras .MixinExtrasBootstrap ;
34import org .mangorage .mangobotmixin .mixin .core .MangoBotMixinBootstrapImpl ;
45import org .mangorage .mangobotmixin .mixin .core .MangoBotMixinServiceImpl ;
56
@@ -50,6 +51,8 @@ public static void load() {
5051 MixinBootstrap .init ();
5152
5253 completeMixinBootstrap ();
54+
55+ MixinExtrasBootstrap .init ();
5356 }
5457
5558 private static void completeMixinBootstrap () {
You can’t perform that action at this time.
0 commit comments