File tree Expand file tree Collapse file tree 3 files changed +2
-9
lines changed
src/main/java/com/falsepattern/lib/internal Expand file tree Collapse file tree 3 files changed +2
-9
lines changed Original file line number Diff line number Diff line change 11package com .falsepattern .lib .internal ;
22
3+ import com .falsepattern .lib .config .ConfigurationManager ;
34import cpw .mods .fml .relauncher .IFMLLoadingPlugin ;
45import cpw .mods .fml .relauncher .IFMLLoadingPlugin .MCVersion ;
56import cpw .mods .fml .relauncher .IFMLLoadingPlugin .Name ;
@@ -31,6 +32,7 @@ public String getSetupClass() {
3132 @ Override
3233 public void injectData (Map <String , Object > data ) {
3334 mcDir = (File ) data .get ("mcLocation" );
35+ ConfigurationManager .init ();
3436 }
3537
3638 @ Override
Original file line number Diff line number Diff line change @@ -61,11 +61,6 @@ public FalsePatternLib() {
6161 log .info ("Version " + Tags .VERSION + " initialized!" );
6262 }
6363
64- @ Mod .EventHandler
65- public void construct (FMLConstructionEvent e ) {
66- proxy .construct (e );
67- }
68-
6964 @ Mod .EventHandler
7065 public void preInit (FMLPreInitializationEvent e ) {
7166 proxy .preInit (e );
Original file line number Diff line number Diff line change @@ -22,10 +22,6 @@ public class CommonProxy {
2222
2323 protected Future <List <ModUpdateInfo >> updatesFuture ;
2424
25- public void construct (FMLConstructionEvent e ) {
26- ConfigurationManager .init ();
27- }
28-
2925 public void preInit (FMLPreInitializationEvent e ) {
3026 try {
3127 ConfigurationManager .registerConfig (LibraryConfig .class );
You can’t perform that action at this time.
0 commit comments