7 lines
135 B
Lua
7 lines
135 B
Lua
|
minetest.register_chatcommand("mail",{
|
||
|
description = "Open the mail interface",
|
||
|
func = function(name)
|
||
|
mail.showinbox(name)
|
||
|
end
|
||
|
})
|