diff options
author | Richard Hendricks <richardhendricks@pobox.com> | 2017-11-20 18:41:20 -0600 |
---|---|---|
committer | Richard Hendricks <richardhendricks@pobox.com> | 2017-11-24 00:50:30 -0600 |
commit | 11ffc12143d6faa3ff8b877c30c6545431243d76 (patch) | |
tree | 2c4a88d523afb3e97723fd0b3f82a8fdd71caaa5 /src/main/java/gregtech/api | |
parent | 9c7e89d7946ba83b0c9b60587afeb9c325bf3a24 (diff) | |
download | GT5-Unofficial-11ffc12143d6faa3ff8b877c30c6545431243d76.tar.gz GT5-Unofficial-11ffc12143d6faa3ff8b877c30c6545431243d76.tar.bz2 GT5-Unofficial-11ffc12143d6faa3ff8b877c30c6545431243d76.zip |
Removed oreveinSize to use a hardcoded value for now, until we can do per-dimension setup. Other minor fixes
Diffstat (limited to 'src/main/java/gregtech/api')
-rw-r--r-- | src/main/java/gregtech/api/enums/GT_Values.java | 3 |
1 files changed, 2 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 b2408affe5..94d268fd58 100644 --- a/src/main/java/gregtech/api/enums/GT_Values.java +++ b/src/main/java/gregtech/api/enums/GT_Values.java @@ -131,8 +131,9 @@ public class GT_Values { public static int oreveinMaxPlacementAttempts; /** * How wide to look for oreveins that affect a requested chunk. Trying to use oreveins larger than this will not work correctly. Increasing the size will cause additional worldgenerator lag. + * Disabled for now, using 64 in Deep Dark, 32 elsewhere */ - public static int oreveinMaxSize; + // public static int oreveinMaxSize; /** * Not really Constants, but they set using the Config and therefore should be constant (those are for the Debug Mode) */ |