mirror of
https://gitlab.com/lunovox/components.git
synced 2025-03-15 08:01:22 +00:00
10 lines
415 B
Lua
10 lines
415 B
Lua
modComponents = {
|
|
modname = minetest.get_current_modname(),
|
|
modpath = minetest.get_modpath(minetest.get_current_modname())
|
|
}
|
|
dofile(modComponents.modpath.."/translate.lua")
|
|
dofile(modComponents.modpath.."/components_objects.lua")
|
|
dofile(modComponents.modpath.."/components_recipes.lua")
|
|
dofile(modComponents.modpath.."/components_digs.lua")
|
|
|
|
minetest.log('action',"["..modComponents.modname:upper().."] Loaded!")
|