1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-09-21 20:20:18 +02:00
server-nalc/mods/_misc/init.lua
Dorian Wouters 947b301456
Move minetest.rotate_node() edit to [_misc]
DON'T edit mods directly if it's possible to override them, or if
the edit has no relation to that specific mod (which was the case).

This reverts commit 3752bf2e64.
2016-08-14 11:31:58 +02:00

50 lines
1.0 KiB
Lua
Executable File

---------------------
-- Server Misc Mod --
---------------------
local cwd = minetest.get_modpath("_misc")
-- Code extracted from edits done in the default mod
dofile(cwd.."/carbone_init.lua")
dofile(cwd.."/commands.lua")
dofile(cwd.."/forbid_underwater_torch.lua")
-- Inventory refill function override
-- see https://github.com/MinetestForFun/server-minetestforfun/issues/462
dofile(cwd.."/inventory_rotate_node.lua")
-- Give initial stuff
dofile(cwd.."/give_initial_stuff.lua")
-- Chat Commands
dofile(cwd.."/chatcommands.lua")
-- No Interact Messages
dofile(cwd.."/nointeract_messages.lua")
-- irc
dofile(cwd.."/irc.lua")
-- No Shout Messages
dofile(cwd.."/noshout_messages.lua")
-- Aliases
dofile(cwd.."/aliases.lua")
-- Craft Obsidian
dofile(cwd.."/craft_obsidian.lua")
-- UnCraft Woll
dofile(cwd.."/uncraft_woll.lua")
-- List players
dofile(cwd.."/list_players.lua")
-- Desert Sand/Sand swap
dofile(cwd.."/sand_swapping.lua")
-- Sapling craft recipes
dofile(cwd.."/sapling_crafts.lua")
-- Bush seeds
dofile(cwd.."/bush_seeds.lua")