File tree Expand file tree Collapse file tree 3 files changed +2
-5
lines changed
src/main/java/com/glodblock/github Expand file tree Collapse file tree 3 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -65,7 +65,3 @@ usesShadowedDependencies = false
6565
6666# Optional parameter to prevent the source code from being published
6767# noPublishedSources =
68- systemProp.http.proxyHost =127.0.0.1
69- systemProp.http.proxyPort =7890
70- systemProp.https.proxyHost =127.0.0.1
71- systemProp.https.proxyPort =7890
Original file line number Diff line number Diff line change @@ -48,7 +48,6 @@ public static void init(FMLInitializationEvent event) {
4848 @ Mod .EventHandler
4949 public static void postInit (FMLPostInitializationEvent event ) {
5050 NetworkRegistry .INSTANCE .registerGuiHandler (FluidCraft .INSTANCE , new InventoryHandler ());
51- (new DefaultExtractorLoader ()).run ();
5251 (new RecipeLoader ()).run ();
5352 proxy .postInit (event );
5453 }
Original file line number Diff line number Diff line change 22
33import com .glodblock .github .loader .ListenerLoader ;
44import com .glodblock .github .loader .RenderLoader ;
5+ import com .glodblock .github .nei .recipes .DefaultExtractorLoader ;
56import cpw .mods .fml .common .event .FMLInitializationEvent ;
67import cpw .mods .fml .common .event .FMLPostInitializationEvent ;
78import cpw .mods .fml .common .event .FMLPreInitializationEvent ;
@@ -23,5 +24,6 @@ public void init(FMLInitializationEvent event){
2324 @ Override
2425 public void postInit (FMLPostInitializationEvent event ){
2526 super .postInit (event );
27+ (new DefaultExtractorLoader ()).run ();
2628 }
2729}
You can’t perform that action at this time.
0 commit comments