mirror of
https://github.com/minetest/minetest.git
synced 2024-11-27 18:13:46 +01:00
Don't print 'Blocks modified by: ' in Map::timerUpdate if no blocks were written
This commit is contained in:
parent
616bad96af
commit
251b015210
@ -1463,11 +1463,13 @@ void Map::timerUpdate(float dtime, float unload_timeout,
|
|||||||
if(save_before_unloading)
|
if(save_before_unloading)
|
||||||
infostream<<", of which "<<saved_blocks_count<<" were written";
|
infostream<<", of which "<<saved_blocks_count<<" were written";
|
||||||
infostream<<"."<<std::endl;
|
infostream<<"."<<std::endl;
|
||||||
|
if(saved_blocks_count != 0){
|
||||||
PrintInfo(infostream); // ServerMap/ClientMap:
|
PrintInfo(infostream); // ServerMap/ClientMap:
|
||||||
infostream<<"Blocks modified by: "<<std::endl;
|
infostream<<"Blocks modified by: "<<std::endl;
|
||||||
modprofiler.print(infostream);
|
modprofiler.print(infostream);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void Map::deleteSectors(core::list<v2s16> &list)
|
void Map::deleteSectors(core::list<v2s16> &list)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user