diff options
author | Jason Mitchell <mitchej@gmail.com> | 2018-09-08 23:39:14 -0700 |
---|---|---|
committer | Jason Mitchell <mitchej@gmail.com> | 2018-09-08 23:39:14 -0700 |
commit | 39ff969968dc22ce171e565d9aa733b6ea3f4439 (patch) | |
tree | 5bef18f9c8fb0027981a6ae8bb903380ed8f701e /src/main/java/gregtech/api/GregTech_API.java | |
parent | 2aeb6e2ca7fb090d2392490aff6d6f87be48fd19 (diff) | |
download | GT5-Unofficial-39ff969968dc22ce171e565d9aa733b6ea3f4439.tar.gz GT5-Unofficial-39ff969968dc22ce171e565d9aa733b6ea3f4439.tar.bz2 GT5-Unofficial-39ff969968dc22ce171e565d9aa733b6ea3f4439.zip |
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
Diffstat (limited to 'src/main/java/gregtech/api/GregTech_API.java')
-rw-r--r-- | src/main/java/gregtech/api/GregTech_API.java | 1 |
1 files changed, 1 insertions, 0 deletions
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
|