summaryrefslogtreecommitdiffstats
path: root/src/Chunk.cpp
diff options
context:
space:
mode:
authorworktycho <work.tycho@gmail.com>2013-12-09 15:05:32 +0100
committerworktycho <work.tycho@gmail.com>2013-12-09 15:05:32 +0100
commitc78f67dcc0879441b4806c44f48fa87bc96aa01c (patch)
tree292646badb127670f91fe4b2792ebd2cb41e3321 /src/Chunk.cpp
parentFixed Warning Unhandeled enum values in switch as src/UI/SlotArea.cpp line 54 (diff)
downloadcuberite-c78f67dcc0879441b4806c44f48fa87bc96aa01c.tar
cuberite-c78f67dcc0879441b4806c44f48fa87bc96aa01c.tar.gz
cuberite-c78f67dcc0879441b4806c44f48fa87bc96aa01c.tar.bz2
cuberite-c78f67dcc0879441b4806c44f48fa87bc96aa01c.tar.lz
cuberite-c78f67dcc0879441b4806c44f48fa87bc96aa01c.tar.xz
cuberite-c78f67dcc0879441b4806c44f48fa87bc96aa01c.tar.zst
cuberite-c78f67dcc0879441b4806c44f48fa87bc96aa01c.zip
Diffstat (limited to 'src/Chunk.cpp')
-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)
}