mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-08 19:40:21 +01:00
232b274c55
subgame + mods
46 lines
1.1 KiB
Lua
46 lines
1.1 KiB
Lua
---------------------
|
|
-- Server Misc Mod --
|
|
---------------------
|
|
|
|
-- Seen
|
|
--dofile(minetest.get_modpath("_misc").."/seen.lua")
|
|
|
|
-- Nodename HUD
|
|
--dofile(minetest.get_modpath("_misc").."/nodename_hud.lua")
|
|
|
|
-- Give initial stuff
|
|
dofile(minetest.get_modpath("_misc").."/give_initial_stuff.lua")
|
|
|
|
-- Chat Commands
|
|
dofile(minetest.get_modpath("_misc").."/chatcommands.lua")
|
|
|
|
-- News
|
|
--dofile(minetest.get_modpath("_misc").."/news.lua")
|
|
|
|
-- Rules
|
|
dofile(minetest.get_modpath("_misc").."/rules.lua")
|
|
|
|
-- Aliases
|
|
dofile(minetest.get_modpath("_misc").."/aliases.lua")
|
|
|
|
-- Chatlog
|
|
--dofile(minetest.get_modpath("_misc").."/chatlog.lua")
|
|
|
|
-- Username filter
|
|
-- dofile(minetest.get_modpath("_misc").."/username_filter.lua")
|
|
|
|
-- Ban
|
|
--dofile(minetest.get_modpath("_misc").."/ban.lua")
|
|
|
|
-- Chat Offline
|
|
--dofile(minetest.get_modpath("_misc").."/chat_offline.lua")
|
|
|
|
-- No Interact Messages
|
|
dofile(minetest.get_modpath("_misc").."/nointeract_messages.lua")
|
|
|
|
-- Craft Obsidian
|
|
dofile(minetest.get_modpath("_misc").."/craft_obsidian.lua")
|
|
|
|
-- UnCraft Woll
|
|
dofile(minetest.get_modpath("_misc").."/uncraft_woll.lua")
|