Skip to content

Commit

Permalink
Make NOVA Wrappers load in the correct order (1.8) (#267)
Browse files Browse the repository at this point in the history
  • Loading branch information
ExE-Boss authored and RX14 committed Feb 24, 2017
1 parent 37efba3 commit 820c854
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,7 @@ public void preInit(FMLPreInitializationEvent evt) {
fmlProgressBar.step(wrapper.getClass());
wrapper.preInit(evt);
});
fmlProgressBar.finish();
ProgressManager.pop(progressBar);

proxy.preInit(evt);
Expand Down Expand Up @@ -222,6 +223,7 @@ public void init(FMLInitializationEvent evt) {
fmlProgressBar.step(wrapper.getClass());
wrapper.init(evt);
});
fmlProgressBar.finish();
ProgressManager.pop(progressBar);
} catch (Exception e) {
System.out.println("Error during init");
Expand All @@ -246,6 +248,7 @@ public void postInit(FMLPostInitializationEvent evt) {
fmlProgressBar.step(wrapper.getClass());
wrapper.postInit(evt);
});
fmlProgressBar.finish();
ProgressManager.pop(progressBar);
} catch (Exception e) {
System.out.println("Error during postInit");
Expand Down

0 comments on commit 820c854

Please sign in to comment.