factions/init.lua

30 lines
792 B
Lua
Raw Normal View History

2016-07-30 05:02:22 +02:00
-------------------------------------------------------------------------------
2016-07-30 07:38:52 +02:00
-- factionsmod Mod by Sapier
2016-07-30 05:02:22 +02:00
--
-- License WTFPL
--
--! @file init.lua
2016-07-30 07:38:52 +02:00
--! @brief factionsmod mod to be used by other mods
2016-07-30 05:02:22 +02:00
--! @copyright Sapier
--! @author Sapier
--! @date 2013-05-08
--!
-- Contact sapier a t gmx net
-------------------------------------------------------------------------------
2016-07-30 07:38:52 +02:00
local factionsmod_version = "0.1.6"
2016-07-30 05:02:22 +02:00
2016-07-30 07:38:52 +02:00
core.log("action", "MOD: factionsmod (by sapier) loading ...")
2016-07-30 05:02:22 +02:00
--!path of mod
2016-07-30 07:38:52 +02:00
factionsmod_modpath = minetest.get_modpath("factionsmod")
2016-07-30 05:02:22 +02:00
2016-07-30 07:38:52 +02:00
dofile (factionsmod_modpath .. "/factionsmod.lua")
dofile (factionsmod_modpath .. "/chatcommands.lua")
2016-07-30 05:02:22 +02:00
2016-07-30 07:38:52 +02:00
factionsmod.load()
factionsmod_chat.init()
2016-07-30 05:02:22 +02:00
2016-07-30 07:38:52 +02:00
core.log("action","MOD: factionsmod (by sapier) " .. factionsmod_version .. " loaded.")