mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2025-07-07 10:20:43 +02:00
- Customizations made by MFF are moved to other mods. This would permit next upgrades to be more easier. - Cherry trees moved to cherry_tree mod as a submodule maintained by sys4-fr. - Custom MFF beds, boats, buckets, liquid sources, fences, tools, meze and other nodes/craft definitions moved to nalc mod. - Move nyancat mod to mods folder because nyancats no longer exist in minetest_game. * Move colouredstonebricks mod as a submodule * Move farming redo mod as a submodule * Move h2omes mod as a submodule * Add missing mobs_dung and mese_dragon_inv textures * Move moreblocks mod as a submodule * Move moreores mod as a submodule * Move pipeworks mod as a submodule * Move player_physics mod as a submodule * Fix unified_inventory mod (depends.txt) * Remove definitively watershed mod that was never used in NALC
30 lines
594 B
Lua
30 lines
594 B
Lua
local modpath = minetest.get_modpath(minetest.get_current_modname())
|
|
|
|
-- Custom craftings
|
|
dofile(modpath.."/crafting.lua")
|
|
|
|
-- Custom craftitems
|
|
dofile(modpath.."/craftitems.lua")
|
|
|
|
-- Custom mapgen ore generation
|
|
dofile(modpath.."/mapgen.lua")
|
|
|
|
-- Custom nodes
|
|
dofile(modpath.."/nodes.lua")
|
|
|
|
-- Custom tools
|
|
dofile(modpath.."/tools.lua")
|
|
|
|
local mods = {"witchcraft", "cotton", "technic",
|
|
"beds", "boats", "bucket",
|
|
"nyancat", "moreores", "moreblocks",
|
|
"maptools"
|
|
}
|
|
|
|
for _,mod in ipairs(mods) do
|
|
if minetest.get_modpath(mod) then
|
|
dofile(modpath.."/"..mod..".lua")
|
|
end
|
|
end
|
|
|