diff options
Diffstat (limited to 'src/client.cpp')
-rw-r--r-- | src/client.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/client.cpp b/src/client.cpp index 32f62e3ba..23f9d2a55 100644 --- a/src/client.cpp +++ b/src/client.cpp @@ -176,6 +176,7 @@ void Client::step(float dtime) if(dr != m_env.getDayNightRatio()) { //dstream<<"dr="<<dr<<std::endl; + dout_client<<DTIME<<"Client: changing day-night ratio"<<std::endl; m_env.setDayNightRatio(dr); m_env.expireMeshes(true); } @@ -1037,6 +1038,9 @@ bool Client::AsyncProcessPacket(LazyMeshUpdater &mesh_updater) p.Z = readS16(&data[6]); //TimeTaker t1("TOCLIENT_REMOVENODE", g_device); + + // This will clear the cracking animation after digging + ((ClientMap&)m_env.getMap()).clearTempMod(p); core::map<v3s16, MapBlock*> modified_blocks; |