master #6

Merged
epCode merged 7 commits from VoxeLibre/VoxeLibre:master into master 2021-02-06 01:10:01 +01:00
1 changed files with 9 additions and 1 deletions
Showing only changes of commit 9492f276fc - Show all commits

View File

@ -227,8 +227,16 @@ end
local function next_biome() local function next_biome()
if #biome_ids < 1 then if #biome_ids < 1 then
for _, biome_name in pairs(biomes_white_list) do for _, biome_name in pairs(biomes_white_list) do
table.insert(biome_ids, minetest.get_biome_id(biome_name)) local biome_id = minetest.get_biome_id(biome_name)
if biome_id then
table.insert(biome_ids, biome_id)
end
end end
if #biome_ids < 1 then
minetest.log("warning", "[mcl_spawn] No suitable biomes found")
return false
end
minetest.log("action", "[mcl_spawn] Suitable biomes found: "..tostring(#biome_ids))
end end
while check <= checks do while check <= checks do
local biome_data = minetest.get_biome_data(cp) local biome_data = minetest.get_biome_data(cp)