fix puzzle seal formspec for mcl

This commit is contained in:
FaceDeer
2022-08-09 22:35:37 -06:00
parent 82c4950715
commit 56850bb7e7
11 changed files with 56 additions and 10 deletions

View File

@ -333,6 +333,14 @@ minetest.register_chatcommand("find_pit", {
end,
})
df_caverns.register_biome_check(function(pos, heat, humidity)
if pos.y > y_max or pos.y < y_min then
return
end
-- TODO: account for perlin noise
return "underworld"
end)
minetest.register_on_generated(function(minp, maxp, seed)
--if out of range of cave definition limits, abort