1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-11-11 04:50:17 +01:00
server-nalc/mods/mff/mff_classic/init.lua
2016-08-21 13:26:16 +02:00

22 lines
616 B
Lua

local modname = minetest.get_current_modname()
local modpath = minetest.get_modpath(modname)
local thismod = {}
_G[modname] = thismod
local start = os.time()
minetest.log('action', "[" .. modname .. "] Loading")
dofile(modpath .. '/aliases.lua')
dofile(modpath .. '/abms.lua')
dofile(modpath .. '/biomes.lua')
dofile(modpath .. '/nodes.lua')
dofile(modpath .. '/trees.lua')
dofile(modpath .. '/craftitems.lua')
dofile(modpath .. '/registers.lua')
dofile(modpath .. '/crafting.lua')
dofile(modpath .. '/mapgen.lua')
minetest.log('action', "[" .. modname .. "] Loaded in " .. (os.time() - start) .. " seconds")