aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/enums
diff options
context:
space:
mode:
authorrepo-alt <wvk17@yandex.ru>2019-12-28 21:38:45 +0300
committerbartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com>2019-12-28 19:38:45 +0100
commit317804772b74bbecffc2f92120768d1c768a9abf (patch)
treeb1f5611f4fc5a387e79ed897cb0c282fa8c056be /src/main/java/gregtech/api/enums
parente94ffcf40114574062d4d7223c7f6f7933034ec5 (diff)
downloadGT5-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.java11
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;
}