diff options
author | Perttu Ahola <celeron55@gmail.com> | 2011-11-28 14:54:39 +0200 |
---|---|---|
committer | Perttu Ahola <celeron55@gmail.com> | 2011-11-29 19:13:57 +0200 |
commit | 7bb4b7911b4ae81b8577d34eb18231978e416d1d (patch) | |
tree | 690355a576576e187365c0e75716b5361fdb2c55 /src | |
parent | fadf248892eae825b57d283032594ed924d8dbea (diff) | |
download | minetest-7bb4b7911b4ae81b8577d34eb18231978e416d1d.tar.gz minetest-7bb4b7911b4ae81b8577d34eb18231978e416d1d.tar.bz2 minetest-7bb4b7911b4ae81b8577d34eb18231978e416d1d.zip |
Comment out debug output in ServerEnvironment::activateBlock
Diffstat (limited to 'src')
-rw-r--r-- | src/environment.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/environment.cpp b/src/environment.cpp index 3a11b4acf..ce25b0fe7 100644 --- a/src/environment.cpp +++ b/src/environment.cpp @@ -671,14 +671,14 @@ void ServerEnvironment::activateBlock(MapBlock *block, u32 additional_dtime) dtime_s = m_game_time - block->getTimestamp(); dtime_s += additional_dtime; - infostream<<"ServerEnvironment::activateBlock(): block timestamp: " - <<stamp<<", game time: "<<m_game_time<<std::endl; + /*infostream<<"ServerEnvironment::activateBlock(): block timestamp: " + <<stamp<<", game time: "<<m_game_time<<std::endl;*/ // Set current time as timestamp block->setTimestampNoChangedFlag(m_game_time); - infostream<<"ServerEnvironment::activateBlock(): block is " - <<dtime_s<<" seconds old."<<std::endl; + /*infostream<<"ServerEnvironment::activateBlock(): block is " + <<dtime_s<<" seconds old."<<std::endl;*/ // Activate stored objects activateObjects(block); |