1
0
Fork 0

Another small change to account for mangrove leaves

This one should actually work as expected.
This commit is contained in:
FossFanatic 2023-04-07 07:36:01 +00:00 committed by Gitea
parent aac6af4c20
commit d28dcb1b10
1 changed files with 1 additions and 1 deletions

View File

@ -302,7 +302,7 @@ local function set_foliage_palette(minp,maxp,data2,area,biomemap,nodes)
local bn = minetest.get_biome_name(biomemap[b_pos])
if bn then
local biome = minetest.registered_biomes[bn]
if biome and biome._mcl_biome_type and biome._mcl_foliage_palette_index and data2[p_pos] == 0 then
if biome and biome._mcl_biome_type and biome._mcl_foliage_palette_index and data2[p_pos] <= 1 then
data2[p_pos] = biome._mcl_foliage_palette_index
lvm_used = true
elseif biome and biome._mcl_biome_type and biome._mcl_foliage_palette_index and data2[p_pos] > 1 then