From f415f9aeee2778b45947fb3cee8e882a72813a00 Mon Sep 17 00:00:00 2001 From: Mark Hoekveen Date: Fri, 13 Apr 2018 16:50:43 +0200 Subject: [PATCH] added hours to 420 --- Shitpost.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shitpost.py b/Shitpost.py index e7c605f..3176d11 100644 --- a/Shitpost.py +++ b/Shitpost.py @@ -38,7 +38,7 @@ class Shitpost(object): secondsLeft = secondsLeft - hours*3600 minutes = math.floor(secondsLeft / 60) seconds = secondsLeft - minutes * 60 - Message += "Nog " + str(days) + " dagen, " + str(minutes) + " minuten en " + str(seconds) + " seconden tot 420!!" + Message += "Nog " + str(days) + " dagen, " + str(hours) + " uur, " + str(minutes) + " minuten en " + str(seconds) + " seconden tot 420!!" yield from ctx.channel.send(ctx.author.mention + ' ' + str(Message)) @commands.command(pass_context=True, hidden=False)