mirror of
https://github.com/mt-mods/biome_lib.git
synced 2024-11-14 22:50:20 +01:00
remove mapblocks from the queue early if they have no surfaces to work on
(sadly can't be done for blocks in the deferred queue until they come out of "idle")
This commit is contained in:
parent
f165434a84
commit
2dbacae561
9
init.lua
9
init.lua
|
@ -511,8 +511,13 @@ function biome_lib.generate_block(shutting_down)
|
|||
biome_lib.pos_hash.surface_node_list = airflag
|
||||
and minetest.find_nodes_in_area_under_air(minp, maxp, biome_lib.surfaceslist_aircheck)
|
||||
or minetest.find_nodes_in_area(minp, maxp, biome_lib.surfaceslist_no_aircheck)
|
||||
biome_lib.pos_hash.action_index = 1
|
||||
if #biome_lib.pos_hash.surface_node_list > 0 then
|
||||
if #biome_lib.pos_hash.surface_node_list == 0 then
|
||||
biome_lib.dbg("Mapblock at "..minetest.pos_to_string(minp).." dequeued: no detected surfaces.", 4)
|
||||
table.remove(blocklog, 1)
|
||||
biome_lib.pos_hash = nil
|
||||
return
|
||||
else
|
||||
biome_lib.pos_hash.action_index = 1
|
||||
biome_lib.dbg("Mapblock at "..minetest.pos_to_string(minp)..
|
||||
" has "..#biome_lib.pos_hash.surface_node_list..
|
||||
" surface nodes to work on (airflag="..dump(airflag)..")", 4)
|
||||
|
|
Loading…
Reference in New Issue
Block a user