diff options
author | Alexdoru <57050655+Alexdoru@users.noreply.github.com> | 2024-10-09 18:11:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-09 18:11:00 +0200 |
commit | d2a9ed7be356fda78de11a5bceedec501a9f1ffc (patch) | |
tree | 68e0141f05d6f52b53c2906c2a6deeacfac05d36 /src/main/java/gtPlusPlus/xmod/gregtech/HandlerGT.java | |
parent | b27b4c35fb01bdabe29abf780486475e2d758e9c (diff) | |
download | GT5-Unofficial-d2a9ed7be356fda78de11a5bceedec501a9f1ffc.tar.gz GT5-Unofficial-d2a9ed7be356fda78de11a5bceedec501a9f1ffc.tar.bz2 GT5-Unofficial-d2a9ed7be356fda78de11a5bceedec501a9f1ffc.zip |
Remove tremendous and useless RAM allocation from GT++ algae pond recipes (#3338)
Diffstat (limited to 'src/main/java/gtPlusPlus/xmod/gregtech/HandlerGT.java')
-rw-r--r-- | src/main/java/gtPlusPlus/xmod/gregtech/HandlerGT.java | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/HandlerGT.java b/src/main/java/gtPlusPlus/xmod/gregtech/HandlerGT.java index 2db9a1e80c..c42061478d 100644 --- a/src/main/java/gtPlusPlus/xmod/gregtech/HandlerGT.java +++ b/src/main/java/gtPlusPlus/xmod/gregtech/HandlerGT.java @@ -20,7 +20,6 @@ import gtPlusPlus.xmod.gregtech.loaders.GTPPBlocks; import gtPlusPlus.xmod.gregtech.loaders.ProcessingAngleGrinder; import gtPlusPlus.xmod.gregtech.loaders.ProcessingElectricSnips; import gtPlusPlus.xmod.gregtech.loaders.misc.AddCustomMachineToPA; -import gtPlusPlus.xmod.gregtech.loaders.recipe.RecipeLoaderAlgaeFarm; import gtPlusPlus.xmod.gregtech.loaders.recipe.RecipeLoaderMolecularTransformer; import gtPlusPlus.xmod.gregtech.loaders.recipe.RecipeLoaderTreeFarm; import gtPlusPlus.xmod.gregtech.registration.gregtech.GregtechConduits; @@ -85,7 +84,6 @@ public class HandlerGT { public static void onLoadComplete(FMLLoadCompleteEvent event) { CokeAndPyrolyseOven.onLoadComplete(); MetaGTProxy.fixIC2FluidNames(); - RecipeLoaderAlgaeFarm.generateRecipes(); RecipeLoaderTreeFarm.generateRecipes(); RecipeLoaderMolecularTransformer.run(); } |