2022-01-15 17:32:48 +01:00
|
|
|
local modname = minetest.get_current_modname()
|
|
|
|
local modpath = minetest.get_modpath(modname)
|
|
|
|
|
2022-01-16 16:20:42 +01:00
|
|
|
if not mcl_mapgen.singlenode then
|
|
|
|
dofile(modpath .. "/desert_temple.lua")
|
2022-01-18 16:17:20 +01:00
|
|
|
dofile(modpath .. "/desert_well.lua")
|
|
|
|
dofile(modpath .. "/fossil.lua")
|
2022-01-18 18:41:09 +01:00
|
|
|
dofile(modpath .. "/igloo.lua")
|
2022-01-16 21:39:53 +01:00
|
|
|
dofile(modpath .. "/jungle_temple.lua")
|
2022-01-18 09:28:08 +01:00
|
|
|
dofile(modpath .. "/nice_jungle_temple.lua")
|
2022-01-17 17:43:30 +01:00
|
|
|
dofile(modpath .. "/noise_indicator.lua")
|
2022-01-18 16:17:20 +01:00
|
|
|
dofile(modpath .. "/stronghold.lua")
|
2022-01-16 16:20:42 +01:00
|
|
|
end
|