Add underground test biome

This commit is contained in:
Brayd 2023-04-22 11:41:12 +02:00
parent 429b3395e7
commit 2ca03afd8e
Signed by: brayd
GPG Key ID: C2B176B9DEB8BA48
1 changed files with 12 additions and 0 deletions

View File

@ -45,3 +45,15 @@ minetest.register_biome({
heat_point = 50,
humidity_point = 50,
})
minetest.register_biome({
name = "test_underground",
node_top = "pangeos:stone",
depth_top = 1,
node_filler = "pangeos:stone",
node_riverbed = "pangeos:stone",
y_min = -31000,
y_max = -5,
heat_point = 50,
humidity_point = 50,
})