Permit start composition of a message by passing receivers into /mail command (close #101)

This commit is contained in:
Athozus 2023-06-18 15:29:27 +02:00
parent d53b07451c
commit 8dadd8043c
No known key found for this signature in database
GPG Key ID: B50895022E8484BF

View File

@ -1,6 +1,10 @@
minetest.register_chatcommand("mail",{
description = "Open the mail interface",
func = function(name)
mail.show_mail_menu(name)
func = function(name, param)
if #param > 0 then -- if param is not empty
mail.show_compose(name, param) -- make a new message
else
mail.show_mail_menu(name) -- show main menu
end
end
})