mirror of
https://gitlab.com/lunovox/minertrade.git
synced 2025-03-15 05:31:20 +00:00
10 lines
325 B
Lua
10 lines
325 B
Lua
modMinerTrade.doLoad()
|
|
|
|
minetest.register_on_leaveplayer(function(player)
|
|
modMinerTrade.doSave()
|
|
end)
|
|
|
|
minetest.register_on_shutdown(function()
|
|
modMinerTrade.doSave()
|
|
minetest.log('action',"[STRONGBOX] "..modMinerTrade.translate("Saving strongbox from all players in the file '%s'!"):format(modMinerTrade.urlTabela))
|
|
end)
|