aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Cam Caswell <[email protected]>2021-09-24 23:00:58 -0400
committerGravatar Cam Caswell <[email protected]>2021-09-24 23:00:58 -0400
commitdebe4a185f1429f5dd139929c7506c04abd9fa34 (patch)
treea994f0f2848a15f7975efc9acaf7d98f005333e4
parentDon't change board embed color (diff)
Change docstring to be more help with the help command
-rw-r--r--bot/exts/fun/duck_game.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/fun/duck_game.py b/bot/exts/fun/duck_game.py
index f97c712d..95e12ced 100644
--- a/bot/exts/fun/duck_game.py
+++ b/bot/exts/fun/duck_game.py
@@ -184,7 +184,7 @@ class DuckGamesDirector(commands.Cog):
)
@commands.cooldown(rate=1, per=2, type=commands.BucketType.channel)
async def start_game(self, ctx: commands.Context) -> None:
- """Generate a board, send the game embed, and end the game after a time limit."""
+ """Start a new Duck Duck Duck Goose game."""
if ctx.channel.id in self.current_games:
await ctx.send("There's already a game running!")
return