mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-05 18:10:26 +01:00
49 lines
951 B
Lua
Executable File
49 lines
951 B
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")
|
|
|
|
-- 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")
|
|
|
|
--Locked furnace
|
|
dofile(cwd.."/furnace_locked.lua")
|