From 04cf2fcdf049489448c7353ba7cf0098413e78c1 Mon Sep 17 00:00:00 2001 From: Luke Rogers Date: Tue, 16 Jul 2013 03:32:47 +1200 Subject: [PATCH] Added stuff --- plugins/time.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/time.py b/plugins/time.py index 88937d6..0bd663b 100755 --- a/plugins/time.py +++ b/plugins/time.py @@ -43,6 +43,8 @@ def beats(inp): "ter midnight. So, @248 would indicate a time 248 .beats after midni" \ "ght representing 248/1000 of a day, just over 5 hours and 57 minute" \ "s. There are no timezones." + elif inp.lower() == "guide": + return "1 day = 1000 .beats, 1 hour = 41.666 .beats, 1 min = 0.6944 .beats, 1 second = 0.01157 .beats" t = time.gmtime() h, m, s = t.tm_hour, t.tm_min, t.tm_sec