diff options
author | 12xx12 <12xx12100@gmail.com> | 2020-08-09 23:50:24 +0200 |
---|---|---|
committer | Alexander Harkness <me@bearbin.net> | 2020-08-10 00:05:13 +0200 |
commit | ec3de19c4e0df620cba1d10036fcd472a4a5dc35 (patch) | |
tree | 9587a34c0076a9ab043bc0e0af89bf3e404e7662 /src/Generating | |
parent | Fix enderchest placement rotation (diff) | |
download | cuberite-ec3de19c4e0df620cba1d10036fcd472a4a5dc35.tar cuberite-ec3de19c4e0df620cba1d10036fcd472a4a5dc35.tar.gz cuberite-ec3de19c4e0df620cba1d10036fcd472a4a5dc35.tar.bz2 cuberite-ec3de19c4e0df620cba1d10036fcd472a4a5dc35.tar.lz cuberite-ec3de19c4e0df620cba1d10036fcd472a4a5dc35.tar.xz cuberite-ec3de19c4e0df620cba1d10036fcd472a4a5dc35.tar.zst cuberite-ec3de19c4e0df620cba1d10036fcd472a4a5dc35.zip |
Diffstat (limited to 'src/Generating')
-rw-r--r-- | src/Generating/FinishGen.cpp | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/Generating/FinishGen.cpp b/src/Generating/FinishGen.cpp index 71be3e497..25c53e563 100644 --- a/src/Generating/FinishGen.cpp +++ b/src/Generating/FinishGen.cpp @@ -1783,15 +1783,7 @@ void cFinishGenOreNests::GenerateOre( int BaseY = nestRnd % a_MaxHeight; nestRnd /= a_MaxHeight; // if the NestSize is smaller then four this breaks - int NestSize; - if (a_NestSize >= 4) - { - NestSize = a_NestSize + (nestRnd % (a_NestSize / 4)); // The actual nest size may be up to 1 / 4 larger - } - else - { - NestSize = a_NestSize; - } + int NestSize = a_NestSize + (nestRnd % (std::max(a_NestSize, 4) / 4)); // The actual nest size may be up to 1 / 4 larger int Num = 0; while (Num < NestSize) { |