diff options
author | kwolekr <kwolekr@minetest.net> | 2013-09-16 22:52:24 -0400 |
---|---|---|
committer | kwolekr <kwolekr@minetest.net> | 2013-09-16 23:33:53 -0400 |
commit | 9bccd75e340d7502251c233418e0afccd9c4a49c (patch) | |
tree | 18c6760ef94d7a9a2f1a79fc25d65b730a863a49 /src/mapblock.cpp | |
parent | c9eb17aba32036e3a2cf25166e1ab256d6dd2cb7 (diff) | |
download | minetest-9bccd75e340d7502251c233418e0afccd9c4a49c.tar.gz minetest-9bccd75e340d7502251c233418e0afccd9c4a49c.tar.bz2 minetest-9bccd75e340d7502251c233418e0afccd9c4a49c.zip |
Weather: Clean up getHeat/getHumidity somewhat
Diffstat (limited to 'src/mapblock.cpp')
-rw-r--r-- | src/mapblock.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mapblock.cpp b/src/mapblock.cpp index b8278b3be..3fb2ec5ed 100644 --- a/src/mapblock.cpp +++ b/src/mapblock.cpp @@ -44,9 +44,8 @@ with this program; if not, write to the Free Software Foundation, Inc., MapBlock::MapBlock(Map *parent, v3s16 pos, IGameDef *gamedef, bool dummy): heat(0), - heat_time(0), humidity(0), - humidity_time(0), + weather_update_time(0), m_parent(parent), m_pos(pos), m_gamedef(gamedef), |