x_marketplace/init.lua

21 lines
546 B
Lua
Raw Permalink Normal View History

2018-11-02 13:24:33 -07:00
-- Definitions made by this mod that other mods can use too
-- @module x_marketplace
-- @author SaKeL
x_marketplace = {}
2018-11-09 16:15:04 -08:00
x_marketplace.max_balance = 1000000 -- one million
x_marketplace.colors = {
["yellow"] = "#FFEB3B", -- info
["green"] = "#4CAF50", -- success
["red"] = "#f44336", -- error
["cyan"] = "#00BCD4" -- terminal info
}
2018-11-02 13:24:33 -07:00
local path = minetest.get_modpath("x_marketplace")
dofile(path.."/store_list.lua")
dofile(path.."/api.lua")
dofile(path.."/chatcommands.lua")
2018-11-25 10:04:44 -08:00
dofile(path.."/nodes.lua")
2018-11-02 13:24:33 -07:00
print ("[Mod] x_marketplace loaded")