aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/enums/GT_Values.java
diff options
context:
space:
mode:
authorRichard Hendricks <richardhendricks@pobox.com>2017-10-02 20:24:24 -0500
committerRichard Hendricks <richardhendricks@pobox.com>2017-10-16 20:41:34 -0500
commit65a7b7764ea5a5f67afc19d19070aa8e9cbbd7e6 (patch)
tree48591674c052ea62fd70905185045ee65fd36945 /src/main/java/gregtech/api/enums/GT_Values.java
parenta8aa3a4f224f9767911b35e41cea0494a3c29511 (diff)
downloadGT5-Unofficial-65a7b7764ea5a5f67afc19d19070aa8e9cbbd7e6.tar.gz
GT5-Unofficial-65a7b7764ea5a5f67afc19d19070aa8e9cbbd7e6.tar.bz2
GT5-Unofficial-65a7b7764ea5a5f67afc19d19070aa8e9cbbd7e6.zip
Rebase to latest experimental head
Diffstat (limited to 'src/main/java/gregtech/api/enums/GT_Values.java')
-rw-r--r--src/main/java/gregtech/api/enums/GT_Values.java18
1 files changed, 13 insertions, 5 deletions
diff --git a/src/main/java/gregtech/api/enums/GT_Values.java b/src/main/java/gregtech/api/enums/GT_Values.java
index 27341027f7..8f98e2ceef 100644
--- a/src/main/java/gregtech/api/enums/GT_Values.java
+++ b/src/main/java/gregtech/api/enums/GT_Values.java
@@ -118,15 +118,23 @@ public class GT_Values {
*/
public static IGT_NetworkHandler NW;
/**
- * Debug parameter for cleanroom testing.
- */
- public static boolean debugCleanroom = false;
- /**
* Not really Constants, but they set using the Config and therefore should be constant (those are for the Debug Mode)
*/
public static boolean D1 = false, D2 = false;
+ /**
+ * Debug parameter for cleanroom testing.
+ */
+ public static boolean debugCleanroom = false;
+ /**
+ * Debug parameter for world generation. Tracks chunks added/removed from run queue.
+ */
+ public static boolean debugWorldGen = false;
/**
* If you have to give something a World Parameter but there is no World... (Dummy World)
*/
public static World DW;
-}
+ /**
+ * Control percentage of filled 3x3 chunks. Lower number means less oreveins spawn
+ */
+ public static int oreveinPercentage;
+} \ No newline at end of file