aboutsummaryrefslogtreecommitdiffstats
path: root/bot/cogs
diff options
context:
space:
mode:
Diffstat (limited to 'bot/cogs')
-rw-r--r--bot/cogs/halloweenify.py3
-rw-r--r--bot/cogs/movie.py5
-rw-r--r--bot/cogs/template.py2
3 files changed, 8 insertions, 2 deletions
diff --git a/bot/cogs/halloweenify.py b/bot/cogs/halloweenify.py
index ddd96bc6..3bd04b80 100644
--- a/bot/cogs/halloweenify.py
+++ b/bot/cogs/halloweenify.py
@@ -18,6 +18,9 @@ class Halloweenify:
@commands.cooldown(1, 300, BucketType.user)
@commands.command()
async def halloweenify(self, ctx):
+ """
+ Change your nickname into a much spookier one!
+ """
with open(Path('../bot/resources', 'halloweenify.json'), 'r') as f:
data = load(f)
diff --git a/bot/cogs/movie.py b/bot/cogs/movie.py
index 82b9c682..925f813f 100644
--- a/bot/cogs/movie.py
+++ b/bot/cogs/movie.py
@@ -18,8 +18,11 @@ class Movie:
def __init__(self, bot):
self.bot = bot
- @commands.command(name='movie', alias=['tmdb'], brief='Pick a scary movie')
+ @commands.command(name='movie', alias=['tmdb'])
async def random_movie(self, ctx):
+ """
+ Randomly select a scary movie and display information about it.
+ """
selection = await self.select_movie()
movie_details = await self.format_metadata(selection)
diff --git a/bot/cogs/template.py b/bot/cogs/template.py
index b3f4da21..aa01432c 100644
--- a/bot/cogs/template.py
+++ b/bot/cogs/template.py
@@ -17,7 +17,7 @@ class Template:
"""
await ctx.send('https://github.com/discord-python/hacktoberbot')
- @commands.group(name='git', invoke_without_command=True)
+ @commands.group(name='git', invoke_without_command=True, brief="A link to resources for learning Git")
async def github(self, ctx):
"""
A command group with the name git. You can now create sub-commands such as git commit.