separated from webmail mod

This commit is contained in:
NatureFreshMilk 2019-09-16 08:06:54 +02:00
commit ca88374fbd
19 changed files with 941 additions and 0 deletions

6
chatcommands.lua Normal file
View file

@ -0,0 +1,6 @@
minetest.register_chatcommand("mail",{
description = "Open the mail interface",
func = function(name)
mail.show_inbox(name)
end
})