mirror of
https://gitlab.com/lunovox/minertrade.git
synced 2025-03-15 13:31:21 +00:00
11 lines
280 B
Lua
11 lines
280 B
Lua
modMinerTrade = {
|
|
modName = minetest.get_current_modname(),
|
|
modPath = minetest.get_modpath(minetest.get_current_modname()),
|
|
save_compressed = (minetest.settings:get_bool("minertrade.save_compressed") ~= false),
|
|
bank = {
|
|
accounts = 0,
|
|
last_pay = 0,
|
|
player = { },
|
|
},
|
|
|
|
}
|