mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-11 04:50:17 +01:00
14 lines
333 B
Lua
14 lines
333 B
Lua
local modname = minetest.get_current_modname()
|
|
local modpath = minetest.get_modpath(modname)
|
|
|
|
local thismod = {}
|
|
_G[modname] = thismod
|
|
|
|
dofile(modpath .. '/aliases.lua')
|
|
|
|
dofile(modpath .. '/abms.lua')
|
|
dofile(modpath .. '/biomes.lua')
|
|
dofile(modpath .. '/mapgen.lua')
|
|
dofile(modpath .. '/nodes.lua')
|
|
dofile(modpath .. '/trees.lua')
|