summaryrefslogtreecommitdiffstats
path: root/src/Chunk.cpp
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2013-12-09 21:16:57 +0100
committerMattes D <github@xoft.cz>2013-12-09 21:16:57 +0100
commit567354b3caf1c7798ee12b48103421c022a0afe1 (patch)
treead9d9680ee78a0a9ba8d1fc5e63045c07528f286 /src/Chunk.cpp
parentFixed angle normalization typo. (diff)
parentfixed warnings in src/Generating/BioGen.cpp (diff)
downloadcuberite-567354b3caf1c7798ee12b48103421c022a0afe1.tar
cuberite-567354b3caf1c7798ee12b48103421c022a0afe1.tar.gz
cuberite-567354b3caf1c7798ee12b48103421c022a0afe1.tar.bz2
cuberite-567354b3caf1c7798ee12b48103421c022a0afe1.tar.lz
cuberite-567354b3caf1c7798ee12b48103421c022a0afe1.tar.xz
cuberite-567354b3caf1c7798ee12b48103421c022a0afe1.tar.zst
cuberite-567354b3caf1c7798ee12b48103421c022a0afe1.zip
Diffstat (limited to '')
-rw-r--r--src/Chunk.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Chunk.cpp b/src/Chunk.cpp
index 4386ffcb8..9c195fdf8 100644
--- a/src/Chunk.cpp
+++ b/src/Chunk.cpp
@@ -1,4 +1,3 @@
-
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
#ifndef _WIN32
@@ -908,8 +907,11 @@ void cChunk::ApplyWeatherToTop()
}
break;
} // case (snowy biomes)
-
// TODO: Rainy biomes should check for farmland and cauldrons
+ default:
+ {
+ break;
+ }
} // switch (biome)
}