mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-07 19:10:23 +01:00
72ad0dc7b7
- Add builtin_falling (by Davedevils) for an amazing bugfix - Tweak node.lua from the subgame MFF and « sea » mod for builtin_falling - Remove news.lua from _misc - Remove _misc_me (empty now) - Add a new mod named « news » and tweak this mod, it works now, add texture for the news (Thank you Davedevils)
25 lines
606 B
Lua
25 lines
606 B
Lua
---------------------
|
|
-- Server Misc Mod --
|
|
---------------------
|
|
|
|
-- Give initial stuff
|
|
dofile(minetest.get_modpath("_misc").."/give_initial_stuff.lua")
|
|
|
|
-- Chat Commands
|
|
dofile(minetest.get_modpath("_misc").."/chatcommands.lua")
|
|
|
|
-- Rules
|
|
dofile(minetest.get_modpath("_misc").."/rules.lua")
|
|
|
|
-- Aliases
|
|
dofile(minetest.get_modpath("_misc").."/aliases.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")
|