mirror of
https://github.com/moparisthebest/minetest
synced 2025-01-11 13:48:39 -05:00
Reset block usage timer on client only if it is very probably drawn
This commit is contained in:
parent
1c98ec94da
commit
763da10c7b
@ -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…
Reference in New Issue
Block a user