factions/init.lua

30 lines
753 B
Lua
Raw Normal View History

2013-05-09 02:35:52 -07:00
-------------------------------------------------------------------------------
-- factions Mod by Sapier
--
-- License WTFPL
--
--! @file init.lua
--! @brief factions mod to be used by other mods
--! @copyright Sapier
--! @author Sapier
--! @date 2013-05-08
--!
-- Contact sapier a t gmx net
-------------------------------------------------------------------------------
2016-01-19 12:47:42 -08:00
local factions_version = "0.1.5"
2013-05-09 02:35:52 -07:00
2014-08-10 04:31:27 -07:00
core.log("action", "MOD: factions (by sapier) loading ...")
2013-05-09 02:35:52 -07:00
--!path of mod
factions_modpath = minetest.get_modpath("factions")
dofile (factions_modpath .. "/factions.lua")
dofile (factions_modpath .. "/chatcommands.lua")
2013-05-09 11:52:59 -07:00
factions.load()
factions_chat.init()
2014-08-10 04:31:27 -07:00
core.log("action","MOD: factions (by sapier) " .. factions_version .. " loaded.")