From a759c27d1b60c7e1845ba4bfd828673c0c01ffba Mon Sep 17 00:00:00 2001 From: Athozus Date: Sat, 8 Apr 2023 11:32:29 +0200 Subject: [PATCH] Open mail interface with previous tab/dropdowns --- chatcommands.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chatcommands.lua b/chatcommands.lua index 284c49c..c77ba33 100644 --- a/chatcommands.lua +++ b/chatcommands.lua @@ -1,6 +1,6 @@ minetest.register_chatcommand("mail",{ description = "Open the mail interface", func = function(name) - mail.show_inbox(name, "3", "1", "") + mail.show_mail_menu(name) end })