(FMLInitializationEvent aEvent)
| 758 | } |
| 759 | |
| 760 | @Override |
| 761 | public void onModInit2(FMLInitializationEvent aEvent) { |
| 762 | if (MD.CHSL.mLoaded) try { |
| 763 | Carving.chisel.getGroup("cobblestone").setOreName(null); |
| 764 | Carving.chisel.getGroup("glowstone").setOreName(null); |
| 765 | } catch(Throwable e) {e.printStackTrace(ERR);} |
| 766 | |
| 767 | OUT.println(getModNameForLog() + ": If the Loading Bar somehow Freezes at this Point, then you definetly ran out of Memory or permgenspace, look at the other Logs to confirm it."); |
| 768 | OreDictManager.INSTANCE.enableRegistrations(); |
| 769 | |
| 770 | for (ICompat tCompat : ICompat.COMPAT_CLASSES) try {tCompat.onLoad(aEvent);} catch(Throwable e) {e.printStackTrace(ERR);} |
| 771 | } |
| 772 | |
| 773 | @Override |
| 774 | public void onModPostInit2(FMLPostInitializationEvent aEvent) { |
nothing calls this directly
no test coverage detected