mirror of
https://github.com/luanti-org/luanti.git
synced 2025-07-02 16:38:41 +00:00
Partially restore the existing logic, and try to enqueue a block as before, if the queue is full it will be handled correctly.
This commit is contained in:
parent
1281173e50
commit
6724068659
1 changed files with 14 additions and 17 deletions
|
@ -343,11 +343,7 @@ void RemoteClient::GetNextBlocks (
|
|||
const bool want_emerge = !block || !block->isGenerated();
|
||||
|
||||
// if the block is already in the emerge queue we don't have to check again
|
||||
if (want_emerge && emerge->isBlockInQueue(p)) {
|
||||
nearest_emerged_d = d;
|
||||
continue;
|
||||
}
|
||||
|
||||
if (!want_emerge || !emerge->isBlockInQueue(p)) {
|
||||
/*
|
||||
Check occlusion cache first.
|
||||
*/
|
||||
|
@ -362,6 +358,7 @@ void RemoteClient::GetNextBlocks (
|
|||
m_blocks_occ.insert(p);
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
Add inexistent block to emerge queue.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue