aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gtPlusPlus/nei
diff options
context:
space:
mode:
authoriouter <62897714+iouter@users.noreply.github.com>2022-11-24 04:53:13 +0800
committerGitHub <noreply@github.com>2022-11-23 21:53:13 +0100
commit921527ce3cc5f92b067f180295fa55dae718461f (patch)
tree4bbbdb575ec865046954c46017d3d244554af017 /src/main/java/gtPlusPlus/nei
parent3357250327185ba468d7afe92bd1271aa3c89ee8 (diff)
downloadGT5-Unofficial-921527ce3cc5f92b067f180295fa55dae718461f.tar.gz
GT5-Unofficial-921527ce3cc5f92b067f180295fa55dae718461f.tar.bz2
GT5-Unofficial-921527ce3cc5f92b067f180295fa55dae718461f.zip
No Cell for Multiblock Dehydrator and ABS (#446)
Diffstat (limited to 'src/main/java/gtPlusPlus/nei')
-rw-r--r--src/main/java/gtPlusPlus/nei/NEI_GT_Config.java4
-rw-r--r--src/main/java/gtPlusPlus/nei/NEI_IMC_Sender.java6
2 files changed, 8 insertions, 2 deletions
diff --git a/src/main/java/gtPlusPlus/nei/NEI_GT_Config.java b/src/main/java/gtPlusPlus/nei/NEI_GT_Config.java
index a49f124e84..a5d93ea687 100644
--- a/src/main/java/gtPlusPlus/nei/NEI_GT_Config.java
+++ b/src/main/java/gtPlusPlus/nei/NEI_GT_Config.java
@@ -33,6 +33,7 @@ public class NEI_GT_Config implements IConfigureNEI {
mUniqueRecipeMapHandling.add(GTPP_Recipe_Map.sThermalFuels.mUnlocalizedName);
mUniqueRecipeMapHandling.add(GTPP_Recipe_Map.sSolarTowerRecipes.mUnlocalizedName);
mUniqueRecipeMapHandling.add(GTPP_Recipe_Map.sTreeSimFakeRecipes.mUnlocalizedName);
+ mUniqueRecipeMapHandling.add(GTPP_Recipe_Map.sMultiblockChemicalDehydratorRecipes.mUnlocalizedName);
// Standard GT Recipe Maps
Logger.INFO("NEI Registration: " + GTPP_Recipe_Map_Internal.sMappingsEx.size() + " sMappingEx");
@@ -75,6 +76,9 @@ public class NEI_GT_Config implements IConfigureNEI {
Logger.INFO(
"NEI Registration: Registering NEI handler for " + GTPP_Recipe_Map.sMultiblockMixerRecipes_GT.mNEIName);
new GT_NEI_MultiNoCell(GTPP_Recipe_Map.sMultiblockMixerRecipes_GT);
+ Logger.INFO("NEI Registration: Registering NEI handler for "
+ + GTPP_Recipe_Map.sMultiblockChemicalDehydratorRecipes.mNEIName);
+ new GT_NEI_MultiNoCell(GTPP_Recipe_Map.sMultiblockChemicalDehydratorRecipes);
Logger.INFO(
"NEI Registration: Registering NEI handler for " + GTPP_Recipe_Map.sAlloyBlastSmelterRecipes.mNEIName);
new GT_NEI_MultiNoCell(GTPP_Recipe_Map.sAlloyBlastSmelterRecipes);
diff --git a/src/main/java/gtPlusPlus/nei/NEI_IMC_Sender.java b/src/main/java/gtPlusPlus/nei/NEI_IMC_Sender.java
index 48c62173c0..cbf08e890b 100644
--- a/src/main/java/gtPlusPlus/nei/NEI_IMC_Sender.java
+++ b/src/main/java/gtPlusPlus/nei/NEI_IMC_Sender.java
@@ -7,10 +7,10 @@ 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.alloyblastsmelter", "gregtech:gt.blockmachines:810");
sendHandler("gtpp.recipe.rocketenginefuel", "gregtech:gt.blockmachines:793");
sendHandler("gtpp.recipe.cyclotron", "gregtech:gt.blockmachines:828");
- sendHandler("gtpp.recipe.chemicaldehydrator", "gregtech:gt.blockmachines:911", 1);
+ sendHandler("gtpp.recipe.chemicaldehydrator", "gregtech:gt.blockmachines:911");
sendHandler("gtpp.recipe.slowfusionreactor", "gregtech:gt.blockmachines:31015");
sendHandler("gtpp.recipe.RTGgenerators", "gregtech:gt.blockmachines:869");
sendHandler("gtpp.recipe.cokeoven", "gregtech:gt.blockmachines:791");
@@ -18,6 +18,8 @@ public class NEI_IMC_Sender {
sendHandler("gtpp.recipe.fishpond", "gregtech:gt.blockmachines:829", 1);
sendHandler("gtpp.recipe.multimixer", "gregtech:gt.blockmachines:811");
sendHandler("gtpp.recipe.advanced.mixer", "gregtech:gt.blockmachines:811");
+ sendHandler("gtpp.recipe.multidehydrator", "gregtech:gt.blockmachines:995");
+ sendCatalyst("gtpp.recipe.multidehydrator", "gregtech:gt.blockmachines:995");
sendHandler("gtpp.recipe.cryogenicfreezer", "gregtech:gt.blockmachines:910");
sendHandler("gtpp.recipe.matterfab2", "gregtech:gt.blockmachines:799");
sendHandler("gtpp.recipe.multicentrifuge", "gregtech:gt.blockmachines:790", 1);