diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2021-12-05 18:49:08 +0000 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2021-12-05 18:49:08 +0000 |
commit | 87240928dbabeab240523ff0d3d59c09176f4955 (patch) | |
tree | 1047b711a149aaf02c8d555f0e42b24610264dfc /src/Java/gtPlusPlus/nei | |
parent | 92ba4e62b6628a146dd24df13ae9ec40b0a69a22 (diff) | |
download | GT5-Unofficial-87240928dbabeab240523ff0d3d59c09176f4955.tar.gz GT5-Unofficial-87240928dbabeab240523ff0d3d59c09176f4955.tar.bz2 GT5-Unofficial-87240928dbabeab240523ff0d3d59c09176f4955.zip |
Add workaround for BW Hydrogen Peroxide unification.
Made generic GT++ Recipes maps use default GT NEI handler.
Boosted fuel value of Rocket Fuels.
Diffstat (limited to 'src/Java/gtPlusPlus/nei')
-rw-r--r-- | src/Java/gtPlusPlus/nei/NEI_GT_Config.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/nei/NEI_GT_Config.java b/src/Java/gtPlusPlus/nei/NEI_GT_Config.java index 57da808f1d..be05961785 100644 --- a/src/Java/gtPlusPlus/nei/NEI_GT_Config.java +++ b/src/Java/gtPlusPlus/nei/NEI_GT_Config.java @@ -5,6 +5,7 @@ import codechicken.nei.api.IConfigureNEI; import gregtech.api.util.GTPP_Recipe; import gregtech.api.util.GTPP_Recipe.GTPP_Recipe_Map; import gregtech.api.util.GT_Recipe.GT_Recipe_Map; +import gregtech.nei.GT_NEI_DefaultHandler; import gtPlusPlus.api.objects.Logger; import gtPlusPlus.api.objects.data.AutoMap; import gtPlusPlus.core.util.Utils; @@ -55,7 +56,7 @@ implements IConfigureNEI { if (tMap.mNEIAllowed) { if (!mUniqueRecipeMapHandling.contains(tMap.mUnlocalizedName)) { Logger.INFO("NEI Registration: Registering NEI handler for "+tMap.mNEIName); - new GTPP_NEI_DefaultHandler(tMap); + new GT_NEI_DefaultHandler(tMap); } else { Logger.INFO("NEI Registration: Not allowed to register NEI handler for "+tMap.mNEIName); |