mirror of
https://gitlab.com/lunovox/e-urn.git
synced 2025-03-15 07:21:22 +00:00
8 lines
302 B
Lua
8 lines
302 B
Lua
|
modEUrn = {}
|
||
|
modEUrn.modname = minetest.get_current_modname()
|
||
|
modEUrn.modpath = minetest.get_modpath(modEUrn.modname)
|
||
|
|
||
|
dofile(modEUrn.modpath.."/translate.lua") -- <== Antes de 'api.lua'!
|
||
|
dofile(modEUrn.modpath.."/item_eurn.lua")
|
||
|
|
||
|
minetest.log('action',"["..modEUrn.modname:upper().."] Loaded!")
|