diff options
author | miozune <miozune@gmail.com> | 2022-07-02 21:49:23 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-02 14:49:23 +0200 |
commit | a41871af4ab006dd00b8611873894a43e914ec38 (patch) | |
tree | 71338db3207b158f765abcd3ef1a77f4bc55d5f5 /src/main/java/goodgenerator/crossmod | |
parent | 171ac8ff9971e43f7e84d624f7c3f792eb1bdad5 (diff) | |
download | GT5-Unofficial-a41871af4ab006dd00b8611873894a43e914ec38.tar.gz GT5-Unofficial-a41871af4ab006dd00b8611873894a43e914ec38.tar.bz2 GT5-Unofficial-a41871af4ab006dd00b8611873894a43e914ec38.zip |
Regroup NEI IMC and add catalyst for complex fusion (#50)
* Regroup NEI IMC and add catalyst for complex fusion
* Check if GT++ is loaded
Diffstat (limited to 'src/main/java/goodgenerator/crossmod')
-rw-r--r-- | src/main/java/goodgenerator/crossmod/nei/IMCForNEI.java | 29 |
1 files changed, 21 insertions, 8 deletions
diff --git a/src/main/java/goodgenerator/crossmod/nei/IMCForNEI.java b/src/main/java/goodgenerator/crossmod/nei/IMCForNEI.java index 8cee2bcc1f..c1fae90a88 100644 --- a/src/main/java/goodgenerator/crossmod/nei/IMCForNEI.java +++ b/src/main/java/goodgenerator/crossmod/nei/IMCForNEI.java @@ -1,23 +1,36 @@ package goodgenerator.crossmod.nei; import cpw.mods.fml.common.event.FMLInterModComms; +import goodgenerator.crossmod.LoadedList; import net.minecraft.nbt.NBTTagCompound; public class IMCForNEI { public static void IMCSender() { sendHandler("goodgenerator.crossmod.nei.NeutronActivatorHandler", "gregtech:gt.blockmachines:32013"); - sendHandler("goodgenerator.crossmod.nei.ExtremeHeatExchangerHandler", "gregtech:gt.blockmachines:32017"); - sendHandler("goodgenerator.crossmod.nei.PreciseAssemblerHandler", "gregtech:gt.blockmachines:32018"); - sendCatalyst("gg.recipe.neutron_activator", "gregtech:gt.blockmachines:32013"); + + sendHandler("goodgenerator.crossmod.nei.ExtremeHeatExchangerHandler", "gregtech:gt.blockmachines:32017"); sendCatalyst("gg.recipe.extreme_heat_exchanger", "gregtech:gt.blockmachines:32017"); + + sendHandler("goodgenerator.crossmod.nei.PreciseAssemblerHandler", "gregtech:gt.blockmachines:32018"); sendCatalyst("gg.recipe.precise_assembler", "gregtech:gt.blockmachines:32018"); - sendCatalyst("gt.recipe.fusionreactor", "gregtech:gt.blockmachines:32019", -1); - sendCatalyst("gt.recipe.fusionreactor", "gregtech:gt.blockmachines:32020", -1); - sendCatalyst("gt.recipe.fusionreactor", "gregtech:gt.blockmachines:32021", -1); - sendCatalyst("gt.recipe.fusionreactor", "gregtech:gt.blockmachines:32022", -1); -// sendCatalyst("gt.recipe.fusionreactor", "gregtech:gt.blockmachines:32023"); // Compact Fusion MK-V sendCatalyst("gt.recipe.assembler", "gregtech:gt.blockmachines:32018"); + + sendCatalyst("gt.recipe.fusionreactor", "gregtech:gt.blockmachines:32019", -10); + sendCatalyst("gt.recipe.fusionreactor", "gregtech:gt.blockmachines:32020", -10); + sendCatalyst("gt.recipe.fusionreactor", "gregtech:gt.blockmachines:32021", -10); + if (LoadedList.GTPP) { + sendCatalyst("gt.recipe.fusionreactor", "gregtech:gt.blockmachines:32022", -10); + } +// sendCatalyst("gt.recipe.fusionreactor", "gregtech:gt.blockmachines:32023", -10); // Compact Fusion MK-V + + sendCatalyst("gt.recipe.complexfusionreactor", "gregtech:gt.blockmachines:32019", -10); + sendCatalyst("gt.recipe.complexfusionreactor", "gregtech:gt.blockmachines:32020", -10); + sendCatalyst("gt.recipe.complexfusionreactor", "gregtech:gt.blockmachines:32021", -10); + if (LoadedList.GTPP) { + sendCatalyst("gt.recipe.complexfusionreactor", "gregtech:gt.blockmachines:32022", -10); + } +// sendCatalyst("gt.recipe.complexfusionreactor", "gregtech:gt.blockmachines:32023", -10); // Compact Fusion MK-V } private static void sendHandler(String aName, String aBlock) { |