mail/chatcommands.lua

7 lines
136 B
Lua
Raw Normal View History

2018-12-05 11:06:25 +01:00
minetest.register_chatcommand("mail",{
description = "Open the mail interface",
func = function(name)
2019-01-12 22:23:32 +00:00
mail.show_inbox(name)
2018-12-05 11:06:25 +01:00
end
})