diff options
author | madmaxoft <github@xoft.cz> | 2014-03-03 20:55:04 +0100 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-03-03 20:55:04 +0100 |
commit | 442c1d96fc77a91b917c7a7aefb7f8f23c0a7e10 (patch) | |
tree | 0b825d6f1d85da97199fc8c5eb12d5b7addf6d13 /src/World.cpp | |
parent | Merge pull request #746 from Howaner/Slabs (diff) | |
download | cuberite-442c1d96fc77a91b917c7a7aefb7f8f23c0a7e10.tar cuberite-442c1d96fc77a91b917c7a7aefb7f8f23c0a7e10.tar.gz cuberite-442c1d96fc77a91b917c7a7aefb7f8f23c0a7e10.tar.bz2 cuberite-442c1d96fc77a91b917c7a7aefb7f8f23c0a7e10.tar.lz cuberite-442c1d96fc77a91b917c7a7aefb7f8f23c0a7e10.tar.xz cuberite-442c1d96fc77a91b917c7a7aefb7f8f23c0a7e10.tar.zst cuberite-442c1d96fc77a91b917c7a7aefb7f8f23c0a7e10.zip |
Diffstat (limited to 'src/World.cpp')
-rw-r--r-- | src/World.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/World.cpp b/src/World.cpp index 58d50d3a8..6ee0def91 100644 --- a/src/World.cpp +++ b/src/World.cpp @@ -325,8 +325,8 @@ int cWorld::GetDefaultWeatherInterval(eWeather a_Weather) } default: { - LOGWARNING("Missing default weather interval for weather %d.", a_Weather); - return 1200; + LOGWARNING("%s: Missing default weather interval for weather %d.", __FUNCTION__, a_Weather); + return -1; } } // switch (Weather) } @@ -348,7 +348,7 @@ void cWorld::SetWeather(eWeather a_NewWeather) m_WeatherInterval = GetDefaultWeatherInterval(a_NewWeather); // The weather can't be found: - if (m_WeatherInterval == 1200) + if (m_WeatherInterval < 0) { return; } |