master #6

Merged
BRNSystems merged 85 commits from Mirrorlandia_minetest/minetest:master into master 2024-01-09 17:53:52 +01:00
Showing only changes of commit ad5e9aa5e3 - Show all commits

@ -604,7 +604,8 @@ void Server::AsyncRunStep(float dtime, bool initial_step)
SendBlocks(dtime);
}
if ((dtime < 0.001f) && !initial_step)
// If paused, this function is called with a 0.0f literal
if ((dtime == 0.0f) && !initial_step)
return;
ScopeProfiler sp(g_profiler, "Server::AsyncRunStep()", SPT_AVG);