LegacyWrapper Version 1.2
Technic version: latest
Minecraft Version: 1.5.2 and below
Issue: de-awt mods cause minecraft with forge to not load the game and exit with no stacktrace or crash report (my mod dpi-fix mod included)
Solution:
net.technicpack.legacywrapper.Frame#runGame needs to call these two lines before calling this.minecraft.init(); (aka minecraft's applet init)
this.minecraft.setPreferredSize(new Dimension(this.getWidth(), this.getHeight()));
this.pack();
Also remove code:
this.setDefaultCloseOperation(3);
Question
jredfox_
LegacyWrapper Version 1.2
Technic version: latest
Minecraft Version: 1.5.2 and below
Issue: de-awt mods cause minecraft with forge to not load the game and exit with no stacktrace or crash report (my mod dpi-fix mod included)
Solution:
net.technicpack.legacywrapper.Frame#runGame needs to call these two lines before calling this.minecraft.init(); (aka minecraft's applet init)
this.minecraft.setPreferredSize(new Dimension(this.getWidth(), this.getHeight()));
this.pack();
Also remove code:
this.setDefaultCloseOperation(3);
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.