Skip to content
This repository has been archived by the owner on Aug 26, 2024. It is now read-only.

Commit

Permalink
Move helper methods out of client side (#32)
Browse files Browse the repository at this point in the history
* Moved GT5OreLayerHelper to both sides

* Moved ore and fluid helper out of the client side
  • Loading branch information
minecraft7771 authored Feb 16, 2023
1 parent a02cad1 commit 427df61
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/pers/gwyog/gtneioreplugin/GTNEIOrePlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@ public void init(FMLInitializationEvent event) {

@EventHandler
public void onLoadComplete(FMLLoadCompleteEvent event) {
new GT5OreLayerHelper();
new GT5OreSmallHelper();
new GT5UndergroundFluidHelper();
if (event.getSide() == Side.CLIENT) {
new GT5OreLayerHelper();
new GT5OreSmallHelper();
new GT5UndergroundFluidHelper();
new GuiRecipeHelper();
if (csv) {
new pers.gwyog.gtneioreplugin.util.CSVMaker().run();
Expand Down

0 comments on commit 427df61

Please sign in to comment.