2024-08-23 10:55:30 +02:00
|
|
|
local modname = minetest.get_current_modname()
|
|
|
|
local S = minetest.get_translator(modname)
|
|
|
|
local modpath = minetest.get_modpath(modname)
|
|
|
|
|
|
|
|
vl_structures = {}
|
|
|
|
|
2024-08-24 19:24:31 +02:00
|
|
|
-- see vl_terraforming for documentation
|
|
|
|
vl_structures.DEFAULT_PREPARE = { tolerance = 10, foundation = -3, clear = false, clear_bottom = 0, clear_top = 4, padding = 1, corners = 1 }
|
|
|
|
vl_structures.DEFAULT_FLAGS = "place_center_x,place_center_z"
|
|
|
|
|
2024-08-23 10:55:30 +02:00
|
|
|
dofile(modpath.."/util.lua")
|
2024-08-24 19:24:31 +02:00
|
|
|
dofile(modpath.."/emerge.lua")
|
2024-08-23 10:55:30 +02:00
|
|
|
dofile(modpath.."/api.lua")
|
2024-08-24 19:24:31 +02:00
|
|
|
dofile(modpath.."/spawning.lua")
|
|
|
|
dofile(modpath.."/commands.lua")
|