1
0
mirror of https://github.com/SmallJoker/exchange_shop.git synced 2024-11-14 22:50:22 +01:00
exchange_shop/init.lua
2022-07-29 13:09:32 +02:00

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