diff options
Diffstat (limited to 'bot/seasons/evergreen/magic_8ball.py')
-rw-r--r-- | bot/seasons/evergreen/magic_8ball.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/bot/seasons/evergreen/magic_8ball.py b/bot/seasons/evergreen/magic_8ball.py index 0b4eeb62..9add06af 100644 --- a/bot/seasons/evergreen/magic_8ball.py +++ b/bot/seasons/evergreen/magic_8ball.py @@ -18,7 +18,7 @@ class Magic8ball(commands.Cog): @commands.command(name="8ball") async def output_answer(self, ctx, *, question): - """Return a magic 8 ball answer from answers list.""" + """Return a Magic 8ball answer from answers list.""" if len(question.split()) >= 3: answer = random.choice(self.answers) await ctx.send(answer) @@ -27,7 +27,6 @@ class Magic8ball(commands.Cog): def setup(bot): - """Magic 8ball cog load.""" - + """Magic 8ball Cog load.""" bot.add_cog(Magic8ball(bot)) log.info("Magic8ball cog loaded") |