2022-01-19 15:09:37 +00:00
|
|
|
local modname = minetest.get_current_modname()
|
|
|
|
local modpath = minetest.get_modpath(modname)
|
|
|
|
|
|
|
|
if not mcl_mapgen.singlenode then
|
|
|
|
dofile(modpath .. "/desert_temple.lua")
|
|
|
|
dofile(modpath .. "/desert_well.lua")
|
|
|
|
dofile(modpath .. "/end_exit_portal.lua")
|
|
|
|
dofile(modpath .. "/fossil.lua")
|
|
|
|
dofile(modpath .. "/igloo.lua")
|
|
|
|
dofile(modpath .. "/ice_spike_small.lua")
|
|
|
|
dofile(modpath .. "/ice_spike_large.lua")
|
|
|
|
dofile(modpath .. "/jungle_temple.lua")
|
|
|
|
dofile(modpath .. "/nice_jungle_temple.lua")
|
2022-03-14 16:35:36 +00:00
|
|
|
dofile(modpath .. "/noise_indicator.lua")
|
2022-01-19 15:09:37 +00:00
|
|
|
dofile(modpath .. "/stronghold.lua")
|
|
|
|
dofile(modpath .. "/witch_hut.lua")
|
|
|
|
end
|