forked from Mirrorlandia_minetest/minetest
Add minetest.registered_biomes
This commit is contained in:
parent
96c34d369e
commit
14eab22d81
@ -223,6 +223,13 @@ function minetest.register_alias(name, convert_to)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local register_biome_raw = minetest.register_biome
|
||||||
|
minetest.registered_biomes = {}
|
||||||
|
function minetest.register_biome(biome)
|
||||||
|
minetest.registered_biomes[biome.name] = biome
|
||||||
|
register_biome_raw(biome)
|
||||||
|
end
|
||||||
|
|
||||||
-- Alias the forbidden item names to "" so they can't be
|
-- Alias the forbidden item names to "" so they can't be
|
||||||
-- created via itemstrings (e.g. /give)
|
-- created via itemstrings (e.g. /give)
|
||||||
local name
|
local name
|
||||||
|
Loading…
Reference in New Issue
Block a user