mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-05 10:00:26 +01:00
b4996ee69b
- The system controlling the items' ejection from a solid node is now in mods/builtin_items/init.lua - The file mods/_misc/chatcommands.lua has been cleared from its comments, and the chatcommands redefined but outdated (like /time)
30 lines
762 B
Lua
Executable File
30 lines
762 B
Lua
Executable File
---------------------
|
|
-- Server Misc Mod --
|
|
---------------------
|
|
|
|
-- Give initial stuff
|
|
dofile(minetest.get_modpath("_misc").."/give_initial_stuff.lua")
|
|
|
|
-- Chat Commands
|
|
dofile(minetest.get_modpath("_misc").."/chatcommands.lua")
|
|
|
|
-- No Interact Messages
|
|
dofile(minetest.get_modpath("_misc").."/nointeract_messages.lua")
|
|
|
|
-- irc
|
|
dofile(minetest.get_modpath("_misc").."/irc.lua")
|
|
-- No Shout Messages
|
|
dofile(minetest.get_modpath("_misc").."/noshout_messages.lua")
|
|
|
|
-- Aliases
|
|
dofile(minetest.get_modpath("_misc").."/aliases.lua")
|
|
|
|
-- Craft Obsidian
|
|
dofile(minetest.get_modpath("_misc").."/craft_obsidian.lua")
|
|
|
|
-- UnCraft Woll
|
|
dofile(minetest.get_modpath("_misc").."/uncraft_woll.lua")
|
|
|
|
-- List players
|
|
dofile(minetest.get_modpath("_misc").."/list_players.lua")
|