nalc/nalc_default/init.lua

19 lines
376 B
Lua
Raw Normal View History

2018-08-27 21:25:56 +02:00
local modpath = minetest.get_modpath(minetest.get_current_modname())
-- 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.")