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 3752bf2e645391afce10bdb7866406d03e95916d.
50 lines
1.0 KiB
Lua
Executable File
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")
|