chatcommands.lua 136 B

1234567
  1. minetest.register_chatcommand("mail",{
  2. description = "Open the mail interface",
  3. func = function(name)
  4. mail.show_inbox(name)
  5. end
  6. })