2023-09-15 15:45:18 -03:00
|
|
|
modComponents = {
|
2023-09-15 12:52:55 -03:00
|
|
|
modname = minetest.get_current_modname(),
|
|
|
|
modpath = minetest.get_modpath(minetest.get_current_modname())
|
|
|
|
}
|
2023-09-15 15:45:18 -03:00
|
|
|
dofile(modComponents.modpath.."/translate.lua")
|
|
|
|
dofile(modComponents.modpath.."/components_objects.lua")
|
|
|
|
dofile(modComponents.modpath.."/components_recipes.lua")
|
|
|
|
dofile(modComponents.modpath.."/components_digs.lua")
|
2023-10-02 04:29:17 -03:00
|
|
|
dofile(modComponents.modpath.."/modify_headlamp.lua")
|
2023-09-15 12:52:55 -03:00
|
|
|
|
2023-09-15 15:45:18 -03:00
|
|
|
minetest.log('action',"["..modComponents.modname:upper().."] Loaded!")
|