forked from Mirrorlandia_minetest/emeraldbank
42 lines
1.2 KiB
Lua
42 lines
1.2 KiB
Lua
|
|
|
|
-- Copyright (C) 2021, 2022 Ale
|
|
|
|
-- This file is part of Emeraldbank Minetest Mod.
|
|
|
|
-- Emeraldbank is free software: you can redistribute it and/or modify
|
|
-- it under the terms of the GNU Affero General Public License as
|
|
-- published by the Free Software Foundation, either version 3 of the
|
|
-- License, or (at your option) any later version.
|
|
|
|
-- Emeraldbank is distributed in the hope that it will be useful,
|
|
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
-- GNU Affero General Public License for more details.
|
|
|
|
-- You should have received a copy of the GNU Affero General Public License
|
|
-- along with Emeraldbank. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
local modpath = core.get_modpath(core.get_current_modname())
|
|
|
|
emeraldbank = {}
|
|
|
|
-- compat with irc mod fork
|
|
if core.get_modpath("irc") then
|
|
if not irc.saysec then
|
|
irc.saysec = irc.say
|
|
end
|
|
end
|
|
|
|
local income_enabled = core.settings:get_bool("emeraldbank.income_enabled", true)
|
|
|
|
if income_enabled then
|
|
dofile(modpath .. "/income.lua")
|
|
end
|
|
|
|
dofile(modpath .. "/bank.lua")
|
|
dofile(modpath .. "/shop.lua")
|
|
dofile(modpath .. "/commands.lua")
|