diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/cc/polyfrost/oneconfig/internal/plugin/LoadingPlugin.java | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/main/java/cc/polyfrost/oneconfig/internal/plugin/LoadingPlugin.java b/src/main/java/cc/polyfrost/oneconfig/internal/plugin/LoadingPlugin.java index 7ab9d4c..cdd0d83 100644 --- a/src/main/java/cc/polyfrost/oneconfig/internal/plugin/LoadingPlugin.java +++ b/src/main/java/cc/polyfrost/oneconfig/internal/plugin/LoadingPlugin.java @@ -17,7 +17,6 @@ public class LoadingPlugin implements IFMLLoadingPlugin { * <a href="https://github.com/DJtheRedstoner/LWJGLTwoPointFive/blob/master/LICENSE/">https://github.com/DJtheRedstoner/LWJGLTwoPointFive/blob/master/LICENSE/</a> */ public LoadingPlugin() { - if (Launch.blackboard.containsKey("oneconfig.init.initialized")) return; try { Field f_exceptions = LaunchClassLoader.class.getDeclaredField("classLoaderExceptions"); f_exceptions.setAccessible(true); @@ -32,7 +31,6 @@ public class LoadingPlugin implements IFMLLoadingPlugin { @Override public String[] getASMTransformerClass() { - if (Launch.blackboard.containsKey("oneconfig.init.registered_transformer")) return new String[]{}; Launch.blackboard.put("oneconfig.init.registered_transformer", true); return new String[]{ClassTransformer.class.getName()}; } |