1
0
mirror of https://github.com/SmallJoker/exchange_shop.git synced 2024-09-21 03:20:17 +02:00
exchange_shop/init.lua
2021-11-26 00:30:14 +01:00

15 lines
450 B
Lua

exchange_shop = {}
exchange_shop.storage_size = 5 * 4
exchange_shop.shopname = "exchange_shop:shop"
-- Internationalisaton
--exchange_shop.S = minetest.get_translator("exchange_shop")
exchange_shop.S = intllib.make_gettext_pair()
exchange_shop.FS = function(...)
return minetest.formspec_escape(exchange_shop.S(...))
end
local modpath = minetest.get_modpath("exchange_shop")
dofile(modpath .. "/shop_functions.lua")
dofile(modpath .. "/shop.lua")