We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b25234e commit dba6e12Copy full SHA for dba6e12
forge/src/main/java/org/embeddedt/modernfix/forge/mixin/core/BootstrapMixin.java
@@ -28,9 +28,6 @@ private static void doModernFixBootstrap(CallbackInfo ci) {
28
/* for https://github.com/MinecraftForge/MinecraftForge/issues/9505 */
29
@Inject(method = "bootStrap", at = @At("RETURN"))
30
private static void doClassloadHack(CallbackInfo ci) {
31
- if(!isBootstrapped) {
32
- NetworkConstants.init();
33
- LOGGER.info("Worked around Forge issue #9505");
34
- }
+ NetworkConstants.init();
35
}
36
0 commit comments