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'
4
4
sourceCompatibility = ' 1.6'
5
5
targetCompatibility = ' 1.6'
6
6
7
- version = ' 0.6.3 '
7
+ version = ' 0.7.0 '
8
8
9
9
repositories {
10
10
mavenCentral()
Original file line number Diff line number Diff line change @@ -207,6 +207,11 @@ public static class PostFMLTweaker extends SimpleTweaker {
207
207
208
208
@ Override
209
209
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
+ }
210
215
// Fix location of jar file
211
216
try {
212
217
Field fPlugins = CoreModManager .class .getDeclaredField ("loadPlugins" );
You can’t perform that action at this time.
0 commit comments