diff options
| author | Glease <4586901+Glease@users.noreply.github.com> | 2022-12-24 04:12:36 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-23 21:12:36 +0100 |
| commit | d8a737faaba655253666b343c052ea2ce61221ca (patch) | |
| tree | 781d5cd83a9bd204e096c83fcaeb5a61040e276c /src/main/java/gregtech/nei | |
| parent | d0d00ccb75318793c0fcd0a05c60affb403bfa96 (diff) | |
| download | GT5-Unofficial-d8a737faaba655253666b343c052ea2ce61221ca.tar.gz GT5-Unofficial-d8a737faaba655253666b343c052ea2ce61221ca.tar.bz2 GT5-Unofficial-d8a737faaba655253666b343c052ea2ce61221ca.zip | |
add NEI handler for ic2 fuel rods (#1580)
* add NEI handler for ic2 fuel rods
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
* fix typo
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
* rename variable to cover up the original intention
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
Diffstat (limited to 'src/main/java/gregtech/nei')
| -rw-r--r-- | src/main/java/gregtech/nei/IMCForNEI.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/gregtech/nei/IMCForNEI.java b/src/main/java/gregtech/nei/IMCForNEI.java index a168867fab..94b9186cbd 100644 --- a/src/main/java/gregtech/nei/IMCForNEI.java +++ b/src/main/java/gregtech/nei/IMCForNEI.java @@ -26,6 +26,8 @@ public class IMCForNEI { sendCatalyst("gt.recipe.nanoforge", "gregtech:gt.blockmachines:357"); sendHandler("gt.recipe.pcbfactory", "gregtech:gt.blockmachines:356"); sendCatalyst("gt.recipe.pcbfactory", "gregtech:gt.blockmachines:356"); + sendHandler("gt.recipe.ic2nuke", "IC2:blockGenerator:5"); + sendCatalyst("gt.recipe.ic2nuke", "IC2:blockGenerator:5"); } private static void sendHandler(String aName, String aBlock, int aMaxRecipesPerPage) { |
