mirror of
https://github.com/mt-mods/mail.git
synced 2025-03-15 06:01:25 +00:00
10 lines
281 B
Lua
10 lines
281 B
Lua
minetest.register_chatcommand("mail",{
|
|
description = "Open the mail interface",
|
|
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
|
|
})
|