diff options
author | Richard Hendricks <richardhendricks@pobox.com> | 2017-11-12 21:27:13 -0600 |
---|---|---|
committer | Richard Hendricks <richardhendricks@pobox.com> | 2017-11-24 00:48:02 -0600 |
commit | 376f7c63f6d7ea9df0b967e9dc1ecbd710370307 (patch) | |
tree | 6cb42a912cb1c0db014f114a538a61c55d1072c6 /src/main/java/gregtech/GT_Mod.java | |
parent | 9574e1b1986a6d582d2e3f6714d370ada34f9a18 (diff) | |
download | GT5-Unofficial-376f7c63f6d7ea9df0b967e9dc1ecbd710370307.tar.gz GT5-Unofficial-376f7c63f6d7ea9df0b967e9dc1ecbd710370307.tar.bz2 GT5-Unofficial-376f7c63f6d7ea9df0b967e9dc1ecbd710370307.zip |
First pass at chunkifying oreveins
Diffstat (limited to 'src/main/java/gregtech/GT_Mod.java')
-rw-r--r-- | src/main/java/gregtech/GT_Mod.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/gregtech/GT_Mod.java b/src/main/java/gregtech/GT_Mod.java index 4e4f93bef5..e2ed973ed6 100644 --- a/src/main/java/gregtech/GT_Mod.java +++ b/src/main/java/gregtech/GT_Mod.java @@ -194,6 +194,8 @@ public class GT_Mod implements IGT_Mod { GT_Values.debugSmallOres = tMainConfig.get(aTextGeneral, "debugSmallOres", false).getBoolean(false); GT_Values.oreveinPercentage = tMainConfig.get(aTextGeneral, "oreveinPercentage_75",75).getInt(75); GT_Values.oreveinAttempts = tMainConfig.get(aTextGeneral, "oreveinAttempts_64",64).getInt(64); + GT_Values.oreveinMaxPlacementAttempts = tMainConfig.get(aTextGeneral, "oreveinMaxPlacementAttempts_8",8).getInt(8); + GT_Values.oreveinMaxSize = tMainConfig.get(aTextGeneral, "oreveinMaxSize_64",64).getInt(64); GregTech_API.TICKS_FOR_LAG_AVERAGING = tMainConfig.get(aTextGeneral, "TicksForLagAveragingWithScanner", 25).getInt(25); GregTech_API.MILLISECOND_THRESHOLD_UNTIL_LAG_WARNING = tMainConfig.get(aTextGeneral, "MillisecondsPassedInGTTileEntityUntilLagWarning", 100).getInt(100); |