mirror of
https://github.com/mt-mods/mail.git
synced 2025-03-15 14:11:26 +00:00
15 lines
555 B
Lua
15 lines
555 B
Lua
-- helper function for tabbed overview
|
|
|
|
function mail.show_mail_menu(playername, sortfield, sortdirection, filter)
|
|
local index = mail.selected_idxs.boxtab[playername] or 1
|
|
if not mail.selected_idxs.boxtab[playername] then
|
|
mail.selected_idxs.boxtab[playername] = 1
|
|
end
|
|
if index == 1 then
|
|
mail.show_inbox(playername, sortfield, sortdirection, filter)
|
|
elseif index == 2 then
|
|
mail.show_outbox(playername, sortfield, sortdirection, filter)
|
|
elseif index == 3 then
|
|
mail.show_drafts(playername)
|
|
end
|
|
end
|