mirror of
https://gitlab.com/lunovox/minertrade.git
synced 2025-03-15 13:31:21 +00:00
11 lines
325 B
Lua
11 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)
|