mirror of
https://gitlab.com/echoes91/spears.git
synced 2024-11-15 14:20:18 +01:00
19 lines
502 B
Lua
19 lines
502 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")
|
|
|
|
local log_mods = minetest.settings:get_bool("log_mods")
|
|
|
|
if minetest.settings:get_bool("log_mods") then
|
|
minetest.log("action", "[MOD] Spears loaded")
|
|
end
|