File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
src/main/java/com/simon816/sponge/bootstrap Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ apply plugin: 'eclipse'
44sourceCompatibility = ' 1.6'
55targetCompatibility = ' 1.6'
66
7- version = ' 0.6.3 '
7+ version = ' 0.7.0 '
88
99repositories {
1010 mavenCentral()
Original file line number Diff line number Diff line change @@ -207,6 +207,11 @@ public static class PostFMLTweaker extends SimpleTweaker {
207207
208208 @ Override
209209 public void injectIntoClassLoader (LaunchClassLoader classLoader ) {
210+ // Mixin system already loaded early so don't load twice
211+ @ SuppressWarnings ("unchecked" )
212+ List <String > tweakClasses = (List <String >) Launch .blackboard .get ("TweakClasses" );
213+ while (tweakClasses .remove ("org.spongepowered.asm.launch.MixinTweaker" )) {
214+ }
210215 // Fix location of jar file
211216 try {
212217 Field fPlugins = CoreModManager .class .getDeclaredField ("loadPlugins" );
You can’t perform that action at this time.
0 commit comments