Skip to content

Commit

Permalink
Fix loading order again
Browse files Browse the repository at this point in the history
  • Loading branch information
miozune authored and Dream-Master committed Nov 10, 2023
1 parent 8db0ea3 commit f246946
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
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 @@ -57,7 +57,6 @@ public static void preInit(FMLPreInitializationEvent event) {

@Mod.EventHandler
public static void init(FMLInitializationEvent event) {
ModAndClassUtil.init();
if (ModAndClassUtil.OC) {
OCDriverInit.run();
}
Expand Down
1 change: 1 addition & 0 deletions src/main/java/com/glodblock/github/proxy/CommonProxy.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ public class CommonProxy {
public final FCNetworkWrapper netHandler = new FCNetworkWrapper(FluidCraft.MODID);

public void preInit(FMLPreInitializationEvent event) {
ModAndClassUtil.init();
ItemAndBlockHolder.init();
}

Expand Down

0 comments on commit f246946

Please sign in to comment.