mail/chatcommands.lua
2019-01-12 22:23:32 +00:00

7 lines
136 B
Lua

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