2018-07-17 21:16:37 +02:00
|
|
|
multi_map = {}
|
|
|
|
|
2018-07-22 18:28:23 +02:00
|
|
|
-- Shorthand alias, can be used when no mods are installed called mm or creating global mm
|
|
|
|
if not mm then
|
|
|
|
mm = multi_map
|
|
|
|
end
|
|
|
|
|
2018-07-24 19:26:28 +02:00
|
|
|
local multi_map_core_path = minetest.get_modpath("multi_map_core")
|
|
|
|
|
|
|
|
-- The various sourced files contain the remainder of the API, the
|
|
|
|
-- settings, node definitions and other core/ helper functionality
|
|
|
|
dofile(multi_map_core_path.."/core.lua")
|
2018-08-07 01:01:05 +02:00
|
|
|
dofile(multi_map_core_path.."/global_noises.lua")
|
2018-07-28 20:45:53 +02:00
|
|
|
dofile(multi_map_core_path.."/noise_mixer.lua")
|
2018-07-24 19:26:28 +02:00
|
|
|
dofile(multi_map_core_path.."/debug.lua")
|
|
|
|
dofile(multi_map_core_path.."/nodes.lua")
|
|
|
|
dofile(multi_map_core_path.."/hud.lua")
|