]> git.lizzy.rs Git - dragonfireclient.git/blobdiff - src/mapblock.cpp
Fix formspec field labels
[dragonfireclient.git] / src / mapblock.cpp
index b8278b3be740829bdc0e0428ec705f0823f4139b..eafb956d5057fd99fa2217f8b251b5c58a173edd 100644 (file)
@@ -44,9 +44,9 @@ 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),
+               heat_last_update(0),
+               humidity_last_update(0),
                m_parent(parent),
                m_pos(pos),
                m_gamedef(gamedef),
@@ -68,7 +68,6 @@ MapBlock::MapBlock(Map *parent, v3s16 pos, IGameDef *gamedef, bool dummy):
                reallocate();
        
 #ifndef SERVER
-       //mesh_mutex.Init();
        mesh = NULL;
 #endif
 }