From 9d28406079e3b2a20dfda1c50ed55a3e60fb2c07 Mon Sep 17 00:00:00 2001 From: sgoudham Date: Thu, 27 Aug 2020 18:52:02 +0100 Subject: [PATCH] Updating commentary --- cogs/anime.py | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/cogs/anime.py b/cogs/anime.py index fafc1180..066ab97a 100644 --- a/cogs/anime.py +++ b/cogs/anime.py @@ -323,8 +323,7 @@ class Anime(Cog): @bot_has_permissions(embed_links=True, add_reactions=True) async def airing(self, ctx): """ - Display airing shows and waifu's in those shows - (UNDER CONSTRUCTION) + Display's airing anime and waifu's within those anime's """ error = WaifuCommandNotFound(ctx.command, ctx) @@ -333,7 +332,7 @@ class Anime(Cog): @airing.command(name="trash", aliases=["worst", "garbage"]) @bot_has_permissions(embed_links=True, add_reactions=True) async def airing_trash(self, ctx): - """Get the most popular waifu’s from the airing shows""" + """Get the most popular waifu’s from the airing anime""" # Variables to set up the reaction menu i = 0 @@ -358,7 +357,7 @@ class Anime(Cog): @airing.command(name="popular", aliases=["pop"]) @bot_has_permissions(embed_links=True, add_reactions=True) async def airing_popular(self, ctx): - """Get the most popular waifu’s from the airing shows""" + """Get the most popular waifu’s from the airing anime""" # Variables to setup the reaction menu i = 0 @@ -383,7 +382,7 @@ class Anime(Cog): @airing.command(name="best") @bot_has_permissions(embed_links=True, add_reactions=True) async def airing_best(self, ctx): - """Get the best waifu’s from the airing shows""" + """Get the best waifu’s from the airing anime""" # Local Variable i to allow the pages to be modified i = 0 @@ -489,8 +488,7 @@ class Anime(Cog): @bot_has_permissions(embed_links=True) async def waifu(self, ctx): """ - Waifu's are grabbed from mywaifulist.com - (UNDER CONSTRUCTION) + Waifu's that are retrieved from MyWaifuList """ error = WaifuCommandNotFound(ctx.command, ctx) await self.bot.generate_embed(ctx, desc=error.message)