mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
tuned expired mesh updating while drawing a bit
This commit is contained in:
parent
6d4cd2ea1a
commit
bcd9813acc
2 changed files with 9 additions and 4 deletions
|
@ -985,7 +985,7 @@ void Client::ProcessData(u8 *data, u32 datasize, u16 sender_peer_id)
|
|||
const s32 nightlength = 2;
|
||||
const s32 daytimelength = 4;
|
||||
s32 d = daylength;
|
||||
s32 t = (((m_time_of_day.get()/* + 24000/d/2*/)%24000)/(24000/d));
|
||||
s32 t = (((m_time_of_day.get())%24000)/(24000/d));
|
||||
u32 dr;
|
||||
if(t < nightlength/2 || t >= d - nightlength/2)
|
||||
dr = 350;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue