mirror of
https://github.com/mt-mods/mail.git
synced 2025-03-15 14:11:26 +00:00
* Add sorters for inbox/outbox * Add ascending/descending, fix selection issue * Add filters * Update translations * Fix UI * Fix luacheck * Fix fields disappearing after clicking on tabs/buttons * Fix luacheck (2) * Fix first message not sorted correctly
6 lines
150 B
Lua
6 lines
150 B
Lua
minetest.register_chatcommand("mail",{
|
|
description = "Open the mail interface",
|
|
func = function(name)
|
|
mail.show_inbox(name, "3", "1", "")
|
|
end
|
|
})
|