7f51486de1
- Ajout des barrières personnalisées qui ont été oubliées. - Modification de default:clay pour en stacker 200 maximum.
25 lines
473 B
Lua
25 lines
473 B
Lua
local modpath = minetest.get_modpath(minetest.get_current_modname())
|
|
|
|
-- Functions
|
|
dofile(modpath.."/functions.lua")
|
|
|
|
-- Custom Nodes
|
|
dofile(modpath.."/nodes.lua")
|
|
|
|
-- Custom fences
|
|
dofile(modpath.."/fences.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.")
|