aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/nei/NEI_GT_Config.java
diff options
context:
space:
mode:
authorAlkalus <3060479+draknyte1@users.noreply.github.com>2021-12-12 16:09:21 +0000
committerAlkalus <3060479+draknyte1@users.noreply.github.com>2021-12-12 16:09:21 +0000
commit35005d1e8124f7a078bb65fb0b11e2e64f1287b9 (patch)
treef78d5a7fd491d3514a2d88eeaab340ba31ea23b8 /src/Java/gtPlusPlus/nei/NEI_GT_Config.java
parentf5f7c53610a342c644bebf7d77f9cf8f4d2aba4c (diff)
downloadGT5-Unofficial-35005d1e8124f7a078bb65fb0b11e2e64f1287b9.tar.gz
GT5-Unofficial-35005d1e8124f7a078bb65fb0b11e2e64f1287b9.tar.bz2
GT5-Unofficial-35005d1e8124f7a078bb65fb0b11e2e64f1287b9.zip
Added recipes for the Cold Trap and Reactor Processing Unit.
Fixed NEI handler for sparging. Changed ABS NEI handler. Replace non-verbose FMLCommonHandler.instance().exitJava() calls with CORE.Crash(string).
Diffstat (limited to 'src/Java/gtPlusPlus/nei/NEI_GT_Config.java')
-rw-r--r--src/Java/gtPlusPlus/nei/NEI_GT_Config.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/Java/gtPlusPlus/nei/NEI_GT_Config.java b/src/Java/gtPlusPlus/nei/NEI_GT_Config.java
index b28cc933ae..0b3cf8e66e 100644
--- a/src/Java/gtPlusPlus/nei/NEI_GT_Config.java
+++ b/src/Java/gtPlusPlus/nei/NEI_GT_Config.java
@@ -31,7 +31,7 @@ implements IConfigureNEI {
mUniqueRecipeMapHandling.add(GTPP_Recipe_Map.sMultiblockCentrifugeRecipes_GT.mUnlocalizedName);
mUniqueRecipeMapHandling.add(GTPP_Recipe_Map.sMultiblockElectrolyzerRecipes_GT.mUnlocalizedName);
mUniqueRecipeMapHandling.add(GTPP_Recipe_Map.sMultiblockMixerRecipes_GT.mUnlocalizedName);
- mUniqueRecipeMapHandling.add(GTPP_Recipe_Map.sSpargeTowerRecipes.mUnlocalizedName);
+ mUniqueRecipeMapHandling.add(GTPP_Recipe_Map.sAlloyBlastSmelterRecipes.mUnlocalizedName);
// Standard GT Recipe Maps
Logger.INFO("NEI Registration: "+GTPP_Recipe_Map_Internal.sMappingsEx.size()+" sMappingEx");
@@ -70,14 +70,15 @@ implements IConfigureNEI {
new GT_NEI_MultiNoCell(GTPP_Recipe_Map.sMultiblockElectrolyzerRecipes_GT);
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.sAlloyBlastSmelterRecipes.mNEIName);
+ new GT_NEI_MultiNoCell(GTPP_Recipe_Map.sAlloyBlastSmelterRecipes);
Logger.INFO("NEI Registration: Registering NEI handler for "+DecayableRecipeHandler.mNEIName);
API.registerRecipeHandler(new DecayableRecipeHandler());
API.registerUsageHandler(new DecayableRecipeHandler());
Logger.INFO("NEI Registration: Registering NEI handler for "+GT_NEI_LFTR_Sparging.mNEIName);
- API.registerRecipeHandler(new GT_NEI_LFTR_Sparging());
- API.registerUsageHandler(new GT_NEI_LFTR_Sparging());
+ new GT_NEI_LFTR_Sparging();
// Hide Flasks
if (Utils.isClient()) {