diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/gtPlusPlus/nei/NEI_IMC_Sender.java | 35 |
1 files changed, 23 insertions, 12 deletions
diff --git a/src/main/java/gtPlusPlus/nei/NEI_IMC_Sender.java b/src/main/java/gtPlusPlus/nei/NEI_IMC_Sender.java index 9edb9992ca..4e5c3e53ce 100644 --- a/src/main/java/gtPlusPlus/nei/NEI_IMC_Sender.java +++ b/src/main/java/gtPlusPlus/nei/NEI_IMC_Sender.java @@ -7,6 +7,7 @@ import net.minecraft.nbt.NBTTagCompound; public class NEI_IMC_Sender { public static void IMCSender() { + // NEI jar is using some outdated handler names sendHandler("gtpp.recipe.alloyblastsmelter", "gregtech:gt.blockmachines:810", 1); sendHandler("gtpp.recipe.rocketenginefuel", "gregtech:gt.blockmachines:793"); sendHandler("gtpp.recipe.cyclotron", "gregtech:gt.blockmachines:828"); @@ -19,39 +20,49 @@ public class NEI_IMC_Sender { sendHandler("gtpp.recipe.multimixer", "gregtech:gt.blockmachines:811"); sendHandler("gtpp.recipe.advanced.mixer", "gregtech:gt.blockmachines:811"); sendHandler("gtpp.recipe.cryogenicfreezer", "gregtech:gt.blockmachines:910"); - sendHandler("gtpp.recipe.geothermalfuel", "gregtech:gt.blockmachines:830"); sendHandler("gtpp.recipe.matterfab2", "gregtech:gt.blockmachines:799"); sendHandler("gtpp.recipe.multicentrifuge", "gregtech:gt.blockmachines:790", 1); sendHandler("gtpp.recipe.multielectro", "gregtech:gt.blockmachines:796", 1); sendHandler("gtpp.recipe.simplewasher", "gregtech:gt.blockmachines:767"); sendHandler("gtpp.recipe.vacfurnace", "gregtech:gt.blockmachines:995", 1); - sendHandler("gtpp.recipe.thermalgeneratorfuel", "gregtech:gt.blockmachines:875", 1); - sendHandler("gtpp.recipe.solartower", "gregtech:gt.blockmachines:863", 1); sendHandler("gtpp.recipe.fissionfuel", "gregtech:gt.blockmachines:835", 1); sendHandler("gtpp.recipe.lftr", "gregtech:gt.blockmachines:751", 1); sendHandler("gtpp.recipe.lftr.sparging", "gregtech:gt.blockmachines:31035", 1); - sendHandler("gtpp.recipe.coldtrap", "gregtech:gt.blockmachines:31034"); - sendHandler("gtpp.recipe.reactorprocessingunit", "gregtech:gt.blockmachines:31032"); - sendHandler("gtpp.recipe.treefarm", "gregtech:gt.blockmachines:836"); - if (LoadedMods.AdvancedSolarPanel) { - sendHandler("gtpp.recipe.moleculartransformer", "AdvancedSolarPanel:BlockMolecularTransformer"); - } sendCatalyst("GTPP_Decayables", "miscutils:blockDecayablesChest"); + + sendHandler("gtpp.recipe.geothermalfuel", "gregtech:gt.blockmachines:830"); sendCatalyst("gtpp.recipe.geothermalfuel", "gregtech:gt.blockmachines:830"); + + sendHandler("gtpp.recipe.thermalgeneratorfuel", "gregtech:gt.blockmachines:875", 1); sendCatalyst("gtpp.recipe.thermalgeneratorfuel", "gregtech:gt.blockmachines:875"); + + sendHandler("gtpp.recipe.solartower", "gregtech:gt.blockmachines:863", 1); sendCatalyst("gtpp.recipe.solartower", "gregtech:gt.blockmachines:863"); + + sendHandler("gtpp.recipe.coldtrap", "gregtech:gt.blockmachines:31034"); sendCatalyst("gtpp.recipe.coldtrap", "gregtech:gt.blockmachines:31033"); sendCatalyst("gtpp.recipe.coldtrap", "gregtech:gt.blockmachines:31034"); + + sendHandler("gtpp.recipe.reactorprocessingunit", "gregtech:gt.blockmachines:31032"); sendCatalyst("gtpp.recipe.reactorprocessingunit", "gregtech:gt.blockmachines:31031"); sendCatalyst("gtpp.recipe.reactorprocessingunit", "gregtech:gt.blockmachines:31032"); + + sendHandler("gtpp.recipe.treefarm", "gregtech:gt.blockmachines:836"); sendCatalyst("gtpp.recipe.treefarm", "gregtech:gt.blockmachines:836"); + + if (LoadedMods.AdvancedSolarPanel) { + sendHandler("gtpp.recipe.moleculartransformer", "AdvancedSolarPanel:BlockMolecularTransformer"); + sendCatalyst("gtpp.recipe.moleculartransformer", "gregtech:gt.blockmachines:31072"); + } + sendCatalyst("gt.recipe.replicator", "gregtech:gt.blockmachines:31050"); sendCatalyst("gt.recipe.gasturbinefuel", "gregtech:gt.blockmachines:31073", -20); sendCatalyst("gt.recipe.plasmageneratorfuels", "gregtech:gt.blockmachines:31074", -20); sendCatalyst("gt.recipe.hammer", "gregtech:gt.blockmachines:31075"); sendCatalyst("gt.recipe.fluidheater", "gregtech:gt.blockmachines:31077"); sendCatalyst("gt.recipe.compressor", "gregtech:gt.blockmachines:31078"); + sendCatalyst("crafting", "gregtech:gt.blockmachines:31081", -10); sendCatalyst("crafting", "gregtech:gt.blockmachines:31082", -10); sendCatalyst("crafting", "gregtech:gt.blockmachines:31091", -10); @@ -62,13 +73,13 @@ public class NEI_IMC_Sender { sendCatalyst("crafting", "gregtech:gt.blockmachines:31096", -10); sendCatalyst("crafting", "gregtech:gt.blockmachines:31097", -10); sendCatalyst("crafting", "gregtech:gt.blockmachines:31098", -10); + // if (CORE.MAIN_GREGTECH_5U_EXPERIMENTAL_FORK) { // // Compound Fabricator // sendCatalyst("gt.recipe.fakeAssemblylineProcess", "gregtech:gt.blockmachines:31024"); // } - if (LoadedMods.AdvancedSolarPanel) { - sendCatalyst("gtpp.recipe.moleculartransformer", "gregtech:gt.blockmachines:31072"); - } + + sendCatalyst("gt.recipe.complexfusionreactor", "gregtech:gt.blockmachines:965", -1); } |