diff options
author | repo-alt <wvk17@yandex.ru> | 2019-12-28 21:38:45 +0300 |
---|---|---|
committer | bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com> | 2019-12-28 19:38:45 +0100 |
commit | 317804772b74bbecffc2f92120768d1c768a9abf (patch) | |
tree | b1f5611f4fc5a387e79ed897cb0c282fa8c056be /src/main/java/gregtech/api/enums | |
parent | e94ffcf40114574062d4d7223c7f6f7933034ec5 (diff) | |
download | GT5-Unofficial-317804772b74bbecffc2f92120768d1c768a9abf.tar.gz GT5-Unofficial-317804772b74bbecffc2f92120768d1c768a9abf.tar.bz2 GT5-Unofficial-317804772b74bbecffc2f92120768d1c768a9abf.zip |
Chunkloading support for multiblock miner (#227)
* WIP, doesn't do anything yet, up to RFC
* Initial attempt at Chunk manager
* Added chunkloading support to multiblock miner.
* moved basic miner-independent chunkloading-related stuff up tier, to be more reusable
Co-authored-by: Richard Hendricks <richardhendricks@pobox.com>
Diffstat (limited to 'src/main/java/gregtech/api/enums')
-rw-r--r-- | src/main/java/gregtech/api/enums/GT_Values.java | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/main/java/gregtech/api/enums/GT_Values.java b/src/main/java/gregtech/api/enums/GT_Values.java index c89d447d66..43c93450ab 100644 --- a/src/main/java/gregtech/api/enums/GT_Values.java +++ b/src/main/java/gregtech/api/enums/GT_Values.java @@ -183,9 +183,18 @@ public class GT_Values { * This will prevent NEI from crashing but spams the Log. */ public static boolean allow_broken_recipemap = false; - /** * This will set the percentage how much ReinforcedGlass is Allowed in Cleanroom Walls. */ public static float cleanroomGlass = 5.0f; + /** + * This will let machines such as drills and pumps chunkload their work area. + */ + public static boolean enableChunkloaders = true; + /** + * This will make all chunkloading machines act as World Anchors (true) or Passive Anchors (false) + */ + public static boolean alwaysReloadChunkloaders = false; + + public static boolean debugChunkloaders = false; } |