Skip to content

Commit

Permalink
?
Browse files Browse the repository at this point in the history
  • Loading branch information
GlodBlock committed May 13, 2022
1 parent f00a88a commit 2d585bd
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
4 changes: 0 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,3 @@ usesShadowedDependencies = false

# Optional parameter to prevent the source code from being published
# noPublishedSources =
systemProp.http.proxyHost=127.0.0.1
systemProp.http.proxyPort=7890
systemProp.https.proxyHost=127.0.0.1
systemProp.https.proxyPort=7890
1 change: 0 additions & 1 deletion src/main/java/com/glodblock/github/FluidCraft.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ public static void init(FMLInitializationEvent event) {
@Mod.EventHandler
public static void postInit(FMLPostInitializationEvent event) {
NetworkRegistry.INSTANCE.registerGuiHandler(FluidCraft.INSTANCE, new InventoryHandler());
(new DefaultExtractorLoader()).run();
(new RecipeLoader()).run();
proxy.postInit(event);
}
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/com/glodblock/github/proxy/ClientProxy.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import com.glodblock.github.loader.ListenerLoader;
import com.glodblock.github.loader.RenderLoader;
import com.glodblock.github.nei.recipes.DefaultExtractorLoader;
import cpw.mods.fml.common.event.FMLInitializationEvent;
import cpw.mods.fml.common.event.FMLPostInitializationEvent;
import cpw.mods.fml.common.event.FMLPreInitializationEvent;
Expand All @@ -23,5 +24,6 @@ public void init(FMLInitializationEvent event){
@Override
public void postInit(FMLPostInitializationEvent event){
super.postInit(event);
(new DefaultExtractorLoader()).run();
}
}

0 comments on commit 2d585bd

Please sign in to comment.