Now named factionsmod!

This commit is contained in:
Anthony Recascino
2016-07-30 01:38:52 -04:00
parent 3145cdea9c
commit 64962da71f
3 changed files with 892 additions and 99 deletions

View File

@ -1,10 +1,10 @@
-------------------------------------------------------------------------------
-- factions Mod by Sapier
-- factionsmod Mod by Sapier
--
-- License WTFPL
--
--! @file init.lua
--! @brief factions mod to be used by other mods
--! @brief factionsmod mod to be used by other mods
--! @copyright Sapier
--! @author Sapier
--! @date 2013-05-08
@ -12,18 +12,18 @@
-- Contact sapier a t gmx net
-------------------------------------------------------------------------------
local factions_version = "0.1.6"
local factionsmod_version = "0.1.6"
core.log("action", "MOD: factions (by sapier) loading ...")
core.log("action", "MOD: factionsmod (by sapier) loading ...")
--!path of mod
factions_modpath = minetest.get_modpath("factions")
factionsmod_modpath = minetest.get_modpath("factionsmod")
dofile (factions_modpath .. "/factions.lua")
dofile (factions_modpath .. "/chatcommands.lua")
dofile (factionsmod_modpath .. "/factionsmod.lua")
dofile (factionsmod_modpath .. "/chatcommands.lua")
factions.load()
factions_chat.init()
factionsmod.load()
factionsmod_chat.init()
core.log("action","MOD: factions (by sapier) " .. factions_version .. " loaded.")
core.log("action","MOD: factionsmod (by sapier) " .. factionsmod_version .. " loaded.")