aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api
diff options
context:
space:
mode:
authorMartin Robertz <dream-master@gmx.net>2017-10-17 19:01:41 +0200
committerGitHub <noreply@github.com>2017-10-17 19:01:41 +0200
commit267614fb520e61efdd75d33d9532ba1c17b0c8de (patch)
treeb7713b30ac9ca6e04bec465c69d00a9968ad1ead /src/main/java/gregtech/api
parent3b78b258d2e117d5af44fe01a16fc1dd5e6fe565 (diff)
parentdf14479aacd21fd5c8029be15082ea19d3c18c9c (diff)
downloadGT5-Unofficial-267614fb520e61efdd75d33d9532ba1c17b0c8de.tar.gz
GT5-Unofficial-267614fb520e61efdd75d33d9532ba1c17b0c8de.tar.bz2
GT5-Unofficial-267614fb520e61efdd75d33d9532ba1c17b0c8de.zip
Merge pull request #39 from richardhendricks/debug/dd_broken_debug
Debug/dd broken debug
Diffstat (limited to 'src/main/java/gregtech/api')
-rw-r--r--src/main/java/gregtech/api/enums/GT_Values.java28
1 files changed, 22 insertions, 6 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..71e22bb1d7 100644
--- a/src/main/java/gregtech/api/enums/GT_Values.java
+++ b/src/main/java/gregtech/api/enums/GT_Values.java
@@ -117,16 +117,32 @@ public class GT_Values {
* For Internal Usage (Network)
*/
public static IGT_NetworkHandler NW;
- /**
- * Debug parameter for cleanroom testing.
- */
- public static boolean debugCleanroom = false;
- /**
+ /**
+ * Control percentage of filled 3x3 chunks. Lower number means less oreveins spawn
+ */
+ public static int oreveinPercentage;
+ /**
+ * Control number of attempts to find a valid orevein. Lower numbers is slightly faster chunkgen, but more empty chunks with thin stone height.
+ */
+ public static int oreveinAttempts;
+ /**
* 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;
+ /**
+ * Debug parameter for orevein generation.
+ */
+ public static boolean debugOrevein = false;
/**
* If you have to give something a World Parameter but there is no World... (Dummy World)
*/
public static World DW;
-}
+} \ No newline at end of file