1
0
mirror of https://gitlab.com/echoes91/spears.git synced 2024-09-22 20:20:18 +02:00
spears/init.lua
Andrea Plati 8f32bb8a52 Alpha1
2015-10-03 20:45:32 +02:00

18 lines
434 B
Lua

dofile(minetest.get_modpath("spears").."/defaults.lua")
local input = io.open(minetest.get_modpath("spears").."/spears.conf", "r")
if input then
dofile(minetest.get_modpath("spears").."/spears.conf")
input:close()
input = nil
end
dofile(minetest.get_modpath("spears").."/functions.lua")
dofile(minetest.get_modpath("spears").."/tools.lua")
if minetest.setting_get("log_mods") then
minetest.log("action", "spears loaded")
end