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/api/GregTech_API.java | 1 + 1 file changed, 1 insertion(+) (limited to 'src/main/java/gregtech/api/GregTech_API.java') diff --git a/src/main/java/gregtech/api/GregTech_API.java b/src/main/java/gregtech/api/GregTech_API.java index f5009aed66..24b35824a2 100644 --- a/src/main/java/gregtech/api/GregTech_API.java +++ b/src/main/java/gregtech/api/GregTech_API.java @@ -198,6 +198,7 @@ public class GregTech_API { public static boolean mGTPlusPlus = false; public static boolean mTranslocator = false; public static boolean mTConstruct = false; + public static boolean mGalacticraft = false; /** * Option to not use MACHINE_METAL mixing into colors -- cgit