diff options
author | 2019-04-04 21:23:34 +0530 | |
---|---|---|
committer | 2019-04-04 21:23:34 +0530 | |
commit | 84192820dd41aef7458665da1ef50e6215c016e0 (patch) | |
tree | 2d39b562149c7fe817957306c082e6a3c0ff9bad | |
parent | sending only one message insted of 2 (removed the embed) (diff) |
removed the embed lines
-rw-r--r-- | bot/seasons/easter/april_fools_vids.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/bot/seasons/easter/april_fools_vids.py b/bot/seasons/easter/april_fools_vids.py index 553b2a78..a851f3cc 100644 --- a/bot/seasons/easter/april_fools_vids.py +++ b/bot/seasons/easter/april_fools_vids.py @@ -32,11 +32,6 @@ class AprilFoolVideos(commands.Cog): random_youtuber = random.choice(self.youtubers) category = self.yt_vids[random_youtuber] random_vid = random.choice(category) - embed = discord.Embed() - embed.title = random_vid['title'] - embed.colour = Colours.yellow - embed.description = f'Checkout this april fools video by {random_youtuber}' - embed.url = random_vid['link'] await ctx.send(f"Check out this April Fools' video by {random_youtuber}.\n\n{random_vid['link']}") |