aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/cofh
diff options
context:
space:
mode:
authorAlkalus <3060479+draknyte1@users.noreply.github.com>2020-01-16 11:33:41 +0000
committerAlkalus <3060479+draknyte1@users.noreply.github.com>2020-01-16 11:33:41 +0000
commit72696a0dd5ca5c0cb2a1017cc1e0bb36669d0ce7 (patch)
tree01430c29601718947e0dcb758e121b135f34f26c /src/Java/gtPlusPlus/xmod/cofh
parenteae5bc6995f40b9b4875fc17db9d12dad1872863 (diff)
downloadGT5-Unofficial-72696a0dd5ca5c0cb2a1017cc1e0bb36669d0ce7.tar.gz
GT5-Unofficial-72696a0dd5ca5c0cb2a1017cc1e0bb36669d0ce7.tar.bz2
GT5-Unofficial-72696a0dd5ca5c0cb2a1017cc1e0bb36669d0ce7.zip
+ 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.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/cofh')
-rw-r--r--src/Java/gtPlusPlus/xmod/cofh/HANDLER_COFH.java15
1 files changed, 15 insertions, 0 deletions
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();
+ }
+ }
+
+}