mail/mtt.lua

10 lines
277 B
Lua
Raw Normal View History

2024-09-28 22:24:30 +03: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)