aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/enums
diff options
context:
space:
mode:
authorRichard Hendricks <richardhendricks@pobox.com>2017-10-02 20:04:20 -0500
committerRichard Hendricks <richardhendricks@pobox.com>2017-10-16 20:41:34 -0500
commit94b24d92e0b533e0631c70748c32a0b5719bfb68 (patch)
treede680a92163bedc922846e29ab6fd662b5741294 /src/main/java/gregtech/api/enums
parent8c867332c01b823293006ea5fa9f91fe79d55008 (diff)
downloadGT5-Unofficial-94b24d92e0b533e0631c70748c32a0b5719bfb68.tar.gz
GT5-Unofficial-94b24d92e0b533e0631c70748c32a0b5719bfb68.tar.bz2
GT5-Unofficial-94b24d92e0b533e0631c70748c32a0b5719bfb68.zip
Add variable to configure number of attempts before giving up, default to 64. Set default orevein fill rate to 75%
Diffstat (limited to 'src/main/java/gregtech/api/enums')
-rw-r--r--src/main/java/gregtech/api/enums/GT_Values.java20
1 files changed, 14 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 8f98e2ceef..71e22bb1d7 100644
--- a/src/main/java/gregtech/api/enums/GT_Values.java
+++ b/src/main/java/gregtech/api/enums/GT_Values.java
@@ -117,24 +117,32 @@ public class GT_Values {
* For Internal Usage (Network)
*/
public static IGT_NetworkHandler NW;
- /**
+ /**
+ * 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;
- /**
- * Control percentage of filled 3x3 chunks. Lower number means less oreveins spawn
- */
- public static int oreveinPercentage;
} \ No newline at end of file