mirror of
https://github.com/SmallJoker/exchange_shop.git
synced 2024-11-10 20:40:37 +01:00
14 lines
396 B
Lua
14 lines
396 B
Lua
exchange_shop = {}
|
|
exchange_shop.storage_size = 5 * 4
|
|
exchange_shop.shopname = "exchange_shop:shop"
|
|
|
|
-- Internationalisaton
|
|
exchange_shop.S = minetest.get_translator_auto("ru")
|
|
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")
|