diff options
author | 2019-03-26 14:16:56 -0400 | |
---|---|---|
committer | 2019-03-26 14:16:56 -0400 | |
commit | bea4ccf2114a50cbe3cfca9859946e732998b1d1 (patch) | |
tree | e12a471d74871a3832c3341b1eecf4c6c8009fed | |
parent | Update d.py pin & relock (diff) |
Add missing Cog inheritance to 8ball
-rw-r--r-- | bot/seasons/evergreen/magic_8ball.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/seasons/evergreen/magic_8ball.py b/bot/seasons/evergreen/magic_8ball.py index 88c9fd26..8e2f9164 100644 --- a/bot/seasons/evergreen/magic_8ball.py +++ b/bot/seasons/evergreen/magic_8ball.py @@ -8,7 +8,7 @@ from discord.ext import commands log = logging.getLogger(__name__) -class Magic8ball: +class Magic8ball(commands.Cog): """ A Magic 8ball command to respond to a users question. """ |