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")
|
2022-01-19 00:59:22 +01:00
|
|
|
dofile(modpath .. "/end_exit_portal.lua")
|
2022-01-18 16:17:20 +01:00
|
|
|
dofile(modpath .. "/fossil.lua")
|
2022-01-18 18:41:09 +01:00
|
|
|
dofile(modpath .. "/igloo.lua")
|
2022-01-19 00:41:22 +01:00
|
|
|
dofile(modpath .. "/ice_spike_small.lua")
|
|
|
|
dofile(modpath .. "/ice_spike_large.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-02-20 03:54:31 +01:00
|
|
|
dofile(modpath .. "/noise_indicator.lua")
|
2022-01-18 16:17:20 +01:00
|
|
|
dofile(modpath .. "/stronghold.lua")
|
2022-01-18 22:49:28 +01:00
|
|
|
dofile(modpath .. "/witch_hut.lua")
|
2022-01-16 16:20:42 +01:00
|
|
|
end
|