2019-11-28 05:21:59 +00:00
|
|
|
-- Dofile the scripts only if ctf doesn't exist
|
|
|
|
if not minetest.global_exists("ctf") then
|
2019-12-18 03:39:53 +00:00
|
|
|
map_maker = {}
|
|
|
|
|
2019-11-28 05:21:59 +00:00
|
|
|
local modpath = minetest.get_modpath(minetest.get_current_modname()) .. "/"
|
2019-12-18 03:39:53 +00:00
|
|
|
dofile(modpath .. "gui.lua")
|
2019-11-28 05:21:59 +00:00
|
|
|
dofile(modpath .. "map_maker.lua")
|
|
|
|
end
|