mail/chatcommands.lua
2023-04-05 18:58:34 +02:00

6 lines
150 B
Lua

minetest.register_chatcommand("mail",{
description = "Open the mail interface",
func = function(name)
mail.show_inbox(name, "3", "1", "")
end
})