2014-10-28 18:01:32 +01: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
|
|
|
|
-------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
local factions_version = "0.1.6"
|
|
|
|
|
|
|
|
core.log("action", "MOD: factions (by sapier) loading ...")
|
|
|
|
|
|
|
|
--!path of mod
|
|
|
|
factions_modpath = minetest.get_modpath("factions")
|
|
|
|
|
|
|
|
|
|
|
|
dofile (factions_modpath .. "/factions.lua")
|
|
|
|
dofile (factions_modpath .. "/chatcommands.lua")
|
|
|
|
|
2018-01-06 18:51:14 +01:00
|
|
|
factions.version = factions_version
|
2014-10-28 18:01:32 +01:00
|
|
|
factions.load()
|
|
|
|
factions_chat.init()
|
|
|
|
|
|
|
|
core.log("action","MOD: factions (by sapier) " .. factions_version .. " loaded.")
|