Add new function

Adds the `get_registered_biome_from_pos` function, which does what the name says.
This commit is contained in:
FossFanatic 2023-02-12 07:57:04 +00:00
parent 81dbdaab94
commit b4e84dadb0
1 changed files with 10 additions and 0 deletions

View File

@ -1011,3 +1011,13 @@ function mcl_util.check_position_protection(position, player)
return false
end
function mcl_util.get_registered_biome_from_pos(pos)
if mg_name ~= "v6" and mg_name ~= "singlenode" then
local biome_data = minetest.get_biome_data(pos)
local biome = biome_data.biome
local biome_name = minetest.get_biome_name(biome)
local reg_biome = minetest.registered_biomes[biome_name]
return reg_biome
end
end