1
0
mirror of https://github.com/rubenwardy/email.git synced 2025-07-16 15:30:27 +02:00

Compare commits

2 Commits

4 changed files with 6 additions and 5 deletions

2
depends.txt Normal file
View File

@ -0,0 +1,2 @@
chatplus?
sfinv?

1
description.txt Normal file
View File

@ -0,0 +1 @@
Adds email style inboxes to Minetest.

View File

@ -74,7 +74,7 @@ function email.get_formspec(name)
local fs = "vertlabel[0,0;Your Inbox]"
function row(fs, c1, date, from, msg)
local function row(fs, c1, date, from, msg)
date = minetest.formspec_escape(date)
from = minetest.formspec_escape(from)
msg = minetest.formspec_escape(msg)
@ -223,3 +223,5 @@ minetest.register_chatcommand("mail", {
dofile(minetest.get_modpath("email") .. "/hud.lua")
email.init()
minetest.log("action", "[email] loaded.")

View File

@ -1,4 +0,0 @@
name = email
title = Email
description = Adds email style inboxes to Minetest.
optional_depends = chatplus,sfinv