summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSTRWarrior <niels.breuker@hotmail.nl>2015-04-21 16:30:18 +0200
committerSTRWarrior <niels.breuker@hotmail.nl>2015-04-21 16:30:18 +0200
commitc5189aaf9c3c2685cf320e2a0cbf73059bc05e29 (patch)
treee1084520c09c90d1e7f79cdecf1c2cfd07722c76
parentCalculate threshold for each column in a chunk instead for the whole chunk (diff)
downloadcuberite-c5189aaf9c3c2685cf320e2a0cbf73059bc05e29.tar
cuberite-c5189aaf9c3c2685cf320e2a0cbf73059bc05e29.tar.gz
cuberite-c5189aaf9c3c2685cf320e2a0cbf73059bc05e29.tar.bz2
cuberite-c5189aaf9c3c2685cf320e2a0cbf73059bc05e29.tar.lz
cuberite-c5189aaf9c3c2685cf320e2a0cbf73059bc05e29.tar.xz
cuberite-c5189aaf9c3c2685cf320e2a0cbf73059bc05e29.tar.zst
cuberite-c5189aaf9c3c2685cf320e2a0cbf73059bc05e29.zip
-rw-r--r--src/Generating/CompoGen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Generating/CompoGen.cpp b/src/Generating/CompoGen.cpp
index b33a157d0..7cadc881a 100644
--- a/src/Generating/CompoGen.cpp
+++ b/src/Generating/CompoGen.cpp
@@ -218,7 +218,7 @@ void cCompoGenClassic::InitializeCompoGen(cIniFile & a_IniFile)
cCompoGenNether::cCompoGenNether(int a_Seed) :
m_Noise1(a_Seed + 10),
m_Noise2(a_Seed * a_Seed * 10 + a_Seed * 1000 + 6000),
- m_MaxThreshold(10000)
+ m_MaxThreshold(25000)
{
}