mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Reset block usage timer on client only if it is very probably drawn
This commit is contained in:
parent
1c98ec94da
commit
763da10c7b
1 changed files with 3 additions and 3 deletions
|
@ -3786,9 +3786,6 @@ void ClientMap::renderMap(video::IVideoDriver* driver, s32 pass)
|
||||||
|
|
||||||
blocks_in_range++;
|
blocks_in_range++;
|
||||||
|
|
||||||
// This block is in range. Reset usage timer.
|
|
||||||
block->resetUsageTimer();
|
|
||||||
|
|
||||||
#if 1
|
#if 1
|
||||||
/*
|
/*
|
||||||
Update expired mesh (used for day/night change)
|
Update expired mesh (used for day/night change)
|
||||||
|
@ -3878,6 +3875,9 @@ void ClientMap::renderMap(video::IVideoDriver* driver, s32 pass)
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// This block is in range. Reset usage timer.
|
||||||
|
block->resetUsageTimer();
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Ignore if mesh doesn't exist
|
Ignore if mesh doesn't exist
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue