From d8a737faaba655253666b343c052ea2ce61221ca Mon Sep 17 00:00:00 2001 From: Glease <4586901+Glease@users.noreply.github.com> Date: Sat, 24 Dec 2022 04:12:36 +0800 Subject: 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> --- src/main/java/gregtech/nei/IMCForNEI.java | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/main/java/gregtech/nei') 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) { -- cgit