mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-17 08:31:08 +01:00
15 lines
403 B
Lua
15 lines
403 B
Lua
|
local modname = minetest.get_current_modname()
|
||
|
local modpath = minetest.get_modpath(modname)
|
||
|
|
||
|
vl_structures.register_structure("desert_well",{
|
||
|
place_on = {"group:sand"},
|
||
|
flags = "place_center_x, place_center_z",
|
||
|
chunk_probability = 15,
|
||
|
y_max = mcl_vars.mg_overworld_max,
|
||
|
y_min = 1,
|
||
|
y_offset = -2,
|
||
|
biomes = { "Desert" },
|
||
|
filenames = { modpath.."/schematics/mcl_structures_desert_well.mts" },
|
||
|
})
|
||
|
|