minetest-mods/mail/mtt.lua

10 lines
277 B
Lua
Raw Permalink Normal View History

2024-01-24 18:04:01 +01:00
mtt.register("setup", function(callback)
-- create test players
local auth_handler = minetest.get_auth_handler()
auth_handler.set_password("player1", "")
auth_handler.set_password("player2", "")
auth_handler.set_password("player3", "")
callback()
end)