cannons/init.lua

24 lines
839 B
Lua
Raw Normal View History

2013-10-12 12:24:24 +02:00
2013-11-13 17:42:48 +01:00
cannons = {}
cannons.MODPATH = minetest.get_modpath(minetest.get_current_modname())
dofile(cannons.MODPATH .."/settings.txt")
dofile(cannons.MODPATH .."/print_r.lua")
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("locks") ~=nil then
minetest.log("locks mod enabled. execute locks.lua")
dofile(cannons.MODPATH .."/locks.lua")--if the locks mod is installed execute this file
end
if minetest.get_modpath("moreores") ~=nil 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()))