diff options
author | iouter <62897714+iouter@users.noreply.github.com> | 2022-11-24 04:53:13 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-23 21:53:13 +0100 |
commit | 921527ce3cc5f92b067f180295fa55dae718461f (patch) | |
tree | 4bbbdb575ec865046954c46017d3d244554af017 /src/main/java/gtPlusPlus/nei/NEI_GT_Config.java | |
parent | 3357250327185ba468d7afe92bd1271aa3c89ee8 (diff) | |
download | GT5-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/NEI_GT_Config.java')
-rw-r--r-- | src/main/java/gtPlusPlus/nei/NEI_GT_Config.java | 4 |
1 files changed, 4 insertions, 0 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); |