capturetheflag/mods/ctf/ctf_map/init.lua

18 lines
624 B
Lua
Raw Normal View History

ctf_map = {}
dofile(minetest.get_modpath("ctf_map") .. "/nodes.lua")
dofile(minetest.get_modpath("ctf_map") .. "/emerge.lua")
dofile(minetest.get_modpath("ctf_map") .. "/barrier.lua")
2019-03-17 01:36:15 +00:00
dofile(minetest.get_modpath("ctf_map") .. "/base.lua")
if minetest.get_modpath("ctf") then
2019-03-17 01:36:15 +00:00
dofile(minetest.get_modpath("ctf_map") .. "/chest.lua")
dofile(minetest.get_modpath("ctf_map") .. "/schem_map.lua")
2018-01-21 22:10:37 +00:00
dofile(minetest.get_modpath("ctf_map") .. "/give_initial_stuff.lua")
assert(ctf_match)
ctf_match.register_on_build_time_end(ctf_map.remove_middle_barrier)
else
dofile(minetest.get_modpath("ctf_map") .. "/map_maker.lua")
end