mirror of
https://gitlab.com/lunovox/components.git
synced 2025-03-15 08:01:22 +00:00
17 lines
674 B
Lua
17 lines
674 B
Lua
|
modUFO = {
|
||
|
modname = minetest.get_current_modname(),
|
||
|
modpath = minetest.get_modpath(minetest.get_current_modname())
|
||
|
}
|
||
|
|
||
|
|
||
|
dofile(minetest.get_modpath(modUFO.modname).."/config.lua")
|
||
|
dofile(minetest.get_modpath(modUFO.modname).."/translate.lua")
|
||
|
dofile(minetest.get_modpath(modUFO.modname).."/api.lua")
|
||
|
dofile(minetest.get_modpath(modUFO.modname).."/formspecs.lua")
|
||
|
dofile(minetest.get_modpath(modUFO.modname).."/components.lua")
|
||
|
dofile(minetest.get_modpath(modUFO.modname).."/ship.lua")
|
||
|
dofile(minetest.get_modpath(modUFO.modname).."/furnace.lua")
|
||
|
--dofile(minetest.get_modpath(modUFO.modname).."/light.lua")
|
||
|
|
||
|
minetest.log('action',"["..modUFO.modname:upper().."] Loaded!")
|