From 72696a0dd5ca5c0cb2a1017cc1e0bb36669d0ce7 Mon Sep 17 00:00:00 2001 From: Alkalus <3060479+draknyte1@users.noreply.github.com> Date: Thu, 16 Jan 2020 11:33:41 +0000 Subject: + Added GT RF convertor. $ Fixed Industrial Mixer not working with fluids. $ Fixed COFH being a hard dependency. $ Fixed Energy Buffers relying on the Rocket Engine config option. --- src/Java/gtPlusPlus/xmod/cofh/HANDLER_COFH.java | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/Java/gtPlusPlus/xmod/cofh/HANDLER_COFH.java (limited to 'src/Java/gtPlusPlus/xmod/cofh') diff --git a/src/Java/gtPlusPlus/xmod/cofh/HANDLER_COFH.java b/src/Java/gtPlusPlus/xmod/cofh/HANDLER_COFH.java new file mode 100644 index 0000000000..7bce4ab173 --- /dev/null +++ b/src/Java/gtPlusPlus/xmod/cofh/HANDLER_COFH.java @@ -0,0 +1,15 @@ +package gtPlusPlus.xmod.cofh; + +import gtPlusPlus.core.item.ModItems; +import gtPlusPlus.core.item.general.RF2EU_Battery; +import gtPlusPlus.core.lib.LoadedMods; + +public class HANDLER_COFH { + + public static void initItems() { + if (LoadedMods.CoFHCore && (LoadedMods.IndustrialCraft2 || LoadedMods.IndustrialCraft2Classic)) { + ModItems.RfEuBattery = new RF2EU_Battery(); + } + } + +} -- cgit