Skip to content

Commit 2d585bd

Browse files
committed
?
1 parent f00a88a commit 2d585bd

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

gradle.properties

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff 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

src/main/java/com/glodblock/github/FluidCraft.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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
}

src/main/java/com/glodblock/github/proxy/ClientProxy.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import com.glodblock.github.loader.ListenerLoader;
44
import com.glodblock.github.loader.RenderLoader;
5+
import com.glodblock.github.nei.recipes.DefaultExtractorLoader;
56
import cpw.mods.fml.common.event.FMLInitializationEvent;
67
import cpw.mods.fml.common.event.FMLPostInitializationEvent;
78
import 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
}

0 commit comments

Comments
 (0)