From bc044b3e44fbf7ad7d58f4a8181779cee1696bdf Mon Sep 17 00:00:00 2001 From: Akamaru Date: Wed, 10 Jun 2015 19:02:41 +0200 Subject: [PATCH] added time to date.lua --- plugins/date.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/date.lua b/plugins/date.lua index f6ef487..e1ea213 100644 --- a/plugins/date.lua +++ b/plugins/date.lua @@ -1,9 +1,9 @@ function run(msg, matches) - return os.date("%d.%m.%Y") + return os.date("Heute ist der %d.%m.%Y und es ist %H:%M:%S") end return { - description = "Zeigt das aktuelle Datum an", + description = "Zeigt das aktuelle Datum und Zeit an", usage = {"/date"}, patterns = {"^/date$"}, run = run