cannons/init.lua

23 lines
956 B
Lua
Raw Normal View History

2013-11-13 17:42:48 +01:00
cannons = {}
cannons.MODPATH = minetest.get_modpath(minetest.get_current_modname())
2014-12-21 10:50:12 +01:00
dofile(cannons.MODPATH .."/functions.lua")
dofile(cannons.MODPATH .."/items.lua")
dofile(cannons.MODPATH .."/cannonballs.lua")
2013-10-12 12:24:24 +02:00
if minetest.get_modpath("tnt") then
2015-06-13 15:34:59 +02:00
minetest.log("info","TNT mod is aviable. registering some TNT stuff")
dofile(cannons.MODPATH .."/tnt.lua")
end
--if minetest.get_modpath("locks") then
-- minetest.log("warning","locks mod enabled. dont execute locks.lua because this is an unstable beta version!")
--dofile(cannons.MODPATH .."/locks.lua")--if the locks mod is installed execute this file
--end
if minetest.get_modpath("moreores") then
minetest.log("info","moreores mod enabled. execute moreores.lua")
dofile(cannons.MODPATH .."/moreores.lua")--if the moreores mod is installed execute this file
end
minetest.log("info", "[MOD]"..minetest.get_current_modname().." -- loaded from "..minetest.get_modpath(minetest.get_current_modname()))