From aaa9b2da48a01438d57d89de0e57021b50eea58e Mon Sep 17 00:00:00 2001 From: brandons209 Date: Thu, 20 Jun 2019 13:08:36 -0400 Subject: [PATCH] final changes --- events/events.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/events/events.py b/events/events.py index dbba299..cf694eb 100644 --- a/events/events.py +++ b/events/events.py @@ -36,7 +36,7 @@ class Events(commands.Cog): async def addevent(self, ctx, start_time: str, *, event_name: str = ""): """ Add event to track. If start time is not given, the current data and time is used. - Start time should be a UNIX timestamp + Start time should be a UNIX timestamp in UTC. """ guild = ctx.guild channel_id = await self.config.guild(guild).channel() @@ -189,4 +189,4 @@ class Events(commands.Cog): msg = "{}{}{}".format(day_msg if elapsed_time.days > 0 else "", hour_msg if int(elapsed_time.seconds / 60 / 60) > 0 else "", minute_msg) embed.add_field(name="Elapsed time", value=msg) await message.edit(embed=embed) - await asyncio.sleep(40) + await asyncio.sleep(30)