diff options
| author | 2019-04-05 21:57:01 +0530 | |
|---|---|---|
| committer | 2019-04-05 21:57:01 +0530 | |
| commit | e590dcd137a9c86b3b7b6d48b5d72d0fc395a768 (patch) | |
| tree | 69a8111e913687e278803e336bf316cc1d7d562b /bot/seasons/evergreen/magic_8ball.py | |
| parent | Merge pull request #1 from python-discord/master (diff) | |
| parent | Merge pull request #184 from RohanRadia/master (diff) | |
Merge branch 'master' of https://github.com/python-discord/seasonalbot
Diffstat (limited to 'bot/seasons/evergreen/magic_8ball.py')
| -rw-r--r-- | bot/seasons/evergreen/magic_8ball.py | 15 | 
1 files changed, 6 insertions, 9 deletions
diff --git a/bot/seasons/evergreen/magic_8ball.py b/bot/seasons/evergreen/magic_8ball.py index 88c9fd26..0b4eeb62 100644 --- a/bot/seasons/evergreen/magic_8ball.py +++ b/bot/seasons/evergreen/magic_8ball.py @@ -8,10 +8,8 @@ from discord.ext import commands  log = logging.getLogger(__name__) -class Magic8ball: -    """ -    A Magic 8ball command to respond to a users question. -    """ +class Magic8ball(commands.Cog): +    """A Magic 8ball command to respond to a user's question."""      def __init__(self, bot):          self.bot = bot @@ -20,9 +18,7 @@ class Magic8ball:      @commands.command(name="8ball")      async def output_answer(self, ctx, *, question): -        """ -        Return a magic 8 ball answer from answers list. -        """ +        """Return a magic 8 ball answer from answers list."""          if len(question.split()) >= 3:              answer = random.choice(self.answers)              await ctx.send(answer) @@ -30,7 +26,8 @@ class Magic8ball:              await ctx.send("Usage: .8ball <question> (minimum length of 3 eg: `will I win?`)") -# Required in order to load the cog, use the class name in the add_cog function.  def setup(bot): +    """Magic 8ball cog load.""" +      bot.add_cog(Magic8ball(bot)) -    log.info("Magic 8ball cog loaded") +    log.info("Magic8ball cog loaded")  |