1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-09-24 21:50:16 +02:00
server-nalc/mods/xban/init.lua
Ombridride 232b274c55 initial commit
subgame + mods
2014-10-28 18:01:32 +01:00

21 lines
428 B
Lua
Executable File

-- Extended Ban Mod for Minetest
-- (C) 2013 Diego Martínez <kaeza>
-- See `LICENSE.txt' for details.
-- init.lua: Initialization script.
xban = { }
xban._ = { } -- Internal functions.
local MP = minetest.get_modpath("xban")
dofile(MP.."/conf.lua")
dofile(MP.."/intr.lua")
dofile(MP.."/xban.lua")
dofile(MP.."/chat.lua")
if minetest.setting_getbool("log_mods") then
minetest.log("action", "Carbone: [xban] loaded.")
end