nalc/nalc_default/init.lua
sys4-fr 22bb5e7602 Différents ajouts :
- Ajout de messages de chargement des mods
- Mise à jour du mod nalc_maptools
2018-09-29 17:17:10 +02:00

22 lines
424 B
Lua

local modpath = minetest.get_modpath(minetest.get_current_modname())
-- Functions
dofile(modpath.."/functions.lua")
-- Custom Nodes
dofile(modpath.."/nodes.lua")
-- Custom mapgen ore generation
dofile(modpath.."/mapgen.lua")
-- Custom Tools
dofile(modpath.."/tools.lua")
-- Custom Crafts
dofile(modpath.."/crafting.lua")
-- Overrides
dofile(modpath.."/overrides.lua")
minetest.log("action", "[nalc_default] loaded.")