Open mail interface with previous tab/dropdowns

This commit is contained in:
Athozus 2023-04-08 11:32:29 +02:00
parent 2743ad075e
commit a759c27d1b
No known key found for this signature in database
GPG key ID: B50895022E8484BF

View file

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