mirror of
https://github.com/SmallJoker/exchange_shop.git
synced 2024-11-14 22:50:22 +01:00
15 lines
421 B
Lua
15 lines
421 B
Lua
exchange_shop = {}
|
|
exchange_shop.storage_size = 5 * 4
|
|
exchange_shop.shopname = "exchange_shop:shop"
|
|
|
|
-- Internationalisation
|
|
exchange_shop.S = minetest.get_translator("exchange_shop")
|
|
|
|
local modpath = minetest.get_modpath("exchange_shop")
|
|
dofile(modpath .. "/shop_functions.lua")
|
|
dofile(modpath .. "/shop.lua")
|
|
|
|
if mesecon and mesecon.register_mvps_stopper then
|
|
mesecon.register_mvps_stopper(exchange_shop.shopname)
|
|
end
|