From 39ff969968dc22ce171e565d9aa733b6ea3f4439 Mon Sep 17 00:00:00 2001 From: Jason Mitchell Date: Sat, 8 Sep 2018 23:39:14 -0700 Subject: GC Energy Compat * GT cables now properly fill GalacticCraft machines with Energy IC2/AE2 Energy Compat * Updated IC2 & AE2 energy compatability * Added an option ic2EnergySourceCompat (default is on) to allow GT cables to pull energy directly from IC2 energy sources (nuclear reactors, MSFEs, etc) without the need for a transformer * Filling IC2/AE2 energy buffers will now send multiple amps if needed Misc * Use a set instead of an arraylist for transfer electricity; deprecated backwards compatiable method left in --- src/main/java/gregtech/common/GT_Proxy.java | 1 + 1 file changed, 1 insertion(+) (limited to 'src/main/java/gregtech/common') diff --git a/src/main/java/gregtech/common/GT_Proxy.java b/src/main/java/gregtech/common/GT_Proxy.java index ddae83ff32..5b3c4e8b79 100644 --- a/src/main/java/gregtech/common/GT_Proxy.java +++ b/src/main/java/gregtech/common/GT_Proxy.java @@ -207,6 +207,7 @@ public abstract class GT_Proxy implements IGT_Mod, IGuiHandler, IFuelHandler { public boolean enableBasaltOres = true; public boolean gt6Pipe = true; public boolean gt6Cable = true; + public boolean ic2EnergySourceCompat = true; public boolean costlyCableConnection = false; public GT_Proxy() { -- cgit