mirror of
https://github.com/minetest/minetest.git
synced 2024-11-23 16:13:46 +01:00
Fix constant re-queueing of emerges that will always be unsuccessful
This commit is contained in:
parent
a9d6be8b6f
commit
5430770b68
@ -344,10 +344,10 @@ void RemoteClient::GetNextBlocks (
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
If block has been marked to not exist on disk (dummy)
|
If block has been marked to not exist on disk (dummy) or is
|
||||||
and generating new ones is not wanted, skip block.
|
not generated and generating new ones is not wanted, skip block.
|
||||||
*/
|
*/
|
||||||
if (!generate && surely_not_found_on_disk) {
|
if (!generate && (surely_not_found_on_disk || block_is_invalid)) {
|
||||||
// get next one.
|
// get next one.
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user