x_marketplace/init.lua

14 lines
354 B
Lua
Raw 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
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")
print ("[Mod] x_marketplace loaded")