summaryrefslogtreecommitdiffstats
path: root/source/World.cpp
diff options
context:
space:
mode:
authornielsbreu@gmail.com <nielsbreu@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-06-24 18:50:32 +0200
committernielsbreu@gmail.com <nielsbreu@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-06-24 18:50:32 +0200
commit146b3d568a6df6f4ac07222bd99a39f11355a0f7 (patch)
tree57022d7f025327ee2e56c319ffb11ff04f7103ef /source/World.cpp
parentFixed piston crafting and redstone blocks can be crafted. (Patch by tonibm19) (diff)
downloadcuberite-146b3d568a6df6f4ac07222bd99a39f11355a0f7.tar
cuberite-146b3d568a6df6f4ac07222bd99a39f11355a0f7.tar.gz
cuberite-146b3d568a6df6f4ac07222bd99a39f11355a0f7.tar.bz2
cuberite-146b3d568a6df6f4ac07222bd99a39f11355a0f7.tar.lz
cuberite-146b3d568a6df6f4ac07222bd99a39f11355a0f7.tar.xz
cuberite-146b3d568a6df6f4ac07222bd99a39f11355a0f7.tar.zst
cuberite-146b3d568a6df6f4ac07222bd99a39f11355a0f7.zip
Diffstat (limited to 'source/World.cpp')
-rw-r--r--source/World.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/source/World.cpp b/source/World.cpp
index c8a7b9ded..39dd17c17 100644
--- a/source/World.cpp
+++ b/source/World.cpp
@@ -544,6 +544,12 @@ void cWorld::Tick(float a_Dt)
void cWorld::TickWeather(float a_Dt)
{
+ // There are no weather changes anywhere but in the Overworld:
+ if (GetDimension() != dimOverworld)
+ {
+ return;
+ }
+
if (m_WeatherInterval > 0)
{
// Not yet, wait for the weather period to end