mirror of
https://github.com/mt-mods/mail.git
synced 2025-03-15 06:01:25 +00:00
6 lines
136 B
Lua
6 lines
136 B
Lua
minetest.register_chatcommand("mail",{
|
|
description = "Open the mail interface",
|
|
func = function(name)
|
|
mail.show_inbox(name)
|
|
end
|
|
})
|