diff options
author | Howaner <franzi.moos@googlemail.com> | 2014-08-08 18:38:20 +0200 |
---|---|---|
committer | Howaner <franzi.moos@googlemail.com> | 2014-08-08 22:07:30 +0200 |
commit | 32e1e9a5536f92d074d51cca207f21c372973629 (patch) | |
tree | 439625f64d9b7c69b61f27a7c2bfa81f1470f79a /src/World.h | |
parent | Added SetDoDaylightCycle() and IsDaylightCycleEnabled() to cWorld. (diff) | |
download | cuberite-32e1e9a5536f92d074d51cca207f21c372973629.tar cuberite-32e1e9a5536f92d074d51cca207f21c372973629.tar.gz cuberite-32e1e9a5536f92d074d51cca207f21c372973629.tar.bz2 cuberite-32e1e9a5536f92d074d51cca207f21c372973629.tar.lz cuberite-32e1e9a5536f92d074d51cca207f21c372973629.tar.xz cuberite-32e1e9a5536f92d074d51cca207f21c372973629.tar.zst cuberite-32e1e9a5536f92d074d51cca207f21c372973629.zip |
Diffstat (limited to '')
-rw-r--r-- | src/World.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/World.h b/src/World.h index 8ddc69118..4e85087fc 100644 --- a/src/World.h +++ b/src/World.h @@ -147,12 +147,12 @@ public: int GetTicksUntilWeatherChange(void) const { return m_WeatherInterval; } /** Is the daylight cyclus enabled? */ - virtual bool IsDaylightCycleEnabled(void) const { return m_DoDaylightCycle; } + virtual bool IsDaylightCycleEnabled(void) const { return m_CycleDaylight; } /** Sets the daylight cyclus to true/false. */ - virtual void SetDoDaylightCycle(bool a_DoDaylightCycle) + virtual void SetDoDaylightCycle(bool a_CycleDaylight) { - m_DoDaylightCycle = a_DoDaylightCycle; + m_CycleDaylight = a_CycleDaylight; BroadcastTimeUpdate(); } @@ -879,7 +879,7 @@ private: bool m_BroadcastDeathMessages; bool m_BroadcastAchievementMessages; - bool m_DoDaylightCycle; // Is the daylight cyclus enabled? + bool m_CycleDaylight; // Is the daylight cyclus enabled? double m_WorldAgeSecs; // World age, in seconds. Is only incremented, cannot be set by plugins. double m_TimeOfDaySecs; // Time of day in seconds. Can be adjusted. Is wrapped to zero each day. Int64 m_WorldAge; // World age in ticks, calculated off of m_WorldAgeSecs |