diff options
author | Mattes D <github@xoft.cz> | 2014-10-28 19:42:35 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-10-28 19:42:35 +0100 |
commit | 6a1a76e73d0b35adbdc6284f1ec36d171adda157 (patch) | |
tree | d91ad7a2c9ab4ab611b7598732d61669d5742019 /src/Generating/FinishGen.cpp | |
parent | QtBiomeVisualiser: Attempt at fixing Linux compilation. (diff) | |
parent | QtBiomeVisualiser: Fixed compilation on Linux. (diff) | |
download | cuberite-6a1a76e73d0b35adbdc6284f1ec36d171adda157.tar cuberite-6a1a76e73d0b35adbdc6284f1ec36d171adda157.tar.gz cuberite-6a1a76e73d0b35adbdc6284f1ec36d171adda157.tar.bz2 cuberite-6a1a76e73d0b35adbdc6284f1ec36d171adda157.tar.lz cuberite-6a1a76e73d0b35adbdc6284f1ec36d171adda157.tar.xz cuberite-6a1a76e73d0b35adbdc6284f1ec36d171adda157.tar.zst cuberite-6a1a76e73d0b35adbdc6284f1ec36d171adda157.zip |
Diffstat (limited to 'src/Generating/FinishGen.cpp')
-rw-r--r-- | src/Generating/FinishGen.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Generating/FinishGen.cpp b/src/Generating/FinishGen.cpp index 0564789dc..18f8ee2bc 100644 --- a/src/Generating/FinishGen.cpp +++ b/src/Generating/FinishGen.cpp @@ -414,6 +414,11 @@ void cFinishGenSnow::GenFinish(cChunkDesc & a_ChunkDesc) } break; } + default: + { + // There's no snow in the other biomes. + break; + } } } } // for z @@ -454,6 +459,11 @@ void cFinishGenIce::GenFinish(cChunkDesc & a_ChunkDesc) } break; } + default: + { + // No icy water in other biomes. + break; + } } } } // for z |