From b3012f117ef04b746f1fda8044faea9183bb0aea Mon Sep 17 00:00:00 2001 From: Dezyox <48913901+Dezyox@users.noreply.github.com> Date: Thu, 26 Sep 2019 20:40:43 +0200 Subject: [PATCH] Update the countdown for the 5th anninversary (#64) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated the anniversary, itโ€™s now the 5th ๐ŸŽ‰ --- blurplefy/blurplefy.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/blurplefy/blurplefy.py b/blurplefy/blurplefy.py index e41af8f..58bb465 100644 --- a/blurplefy/blurplefy.py +++ b/blurplefy/blurplefy.py @@ -396,21 +396,21 @@ class Blurplefy(commands.Cog): @commands.command() async def countdown(self, ctx): - """Countdown to Discord's 4th Anniversary.""" + """Countdown to Discord's 5th Anniversary.""" embed = discord.Embed(name="", colour=0x7289da) timeleft = ( - datetime.datetime(2018, 5, 13) + datetime.datetime(2019, 5, 13) + datetime.timedelta(hours=7) - datetime.datetime.utcnow() ) - embed.set_author(name="Time left until Discord's 4th Anniversary") + embed.set_author(name="Time left until Discord's 5th Anniversary") if int(timeleft.total_seconds()) < 0: timeleft = ( - datetime.datetime(2019, 5, 13) + datetime.datetime(2020, 5, 13) + datetime.timedelta(hours=7) - datetime.datetime.utcnow() ) - embed.set_author(name="Time left until Discord's 4th Anniversary") + embed.set_author(name="Time left until Discord's 5th Anniversary") embed.add_field( name="Countdown to midnight, May 13, California time (UTC-7):", value=("{}".format(self._dynamic_time(int(timeleft.total_seconds())))),