aboutsummaryrefslogtreecommitdiffstats
path: root/bot
diff options
context:
space:
mode:
authorGravatar Cam Caswell <[email protected]>2021-08-19 18:08:40 -0400
committerGravatar Cam Caswell <[email protected]>2021-08-19 18:08:40 -0400
commit261c4f873761fb1f75563fa370245110a81d519d (patch)
tree005087cde971592185f11f1202d9bab65bf22ebe /bot
parentImprove help message (diff)
Add more aliases
Diffstat (limited to 'bot')
-rw-r--r--bot/exts/evergreen/duck_game.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/bot/exts/evergreen/duck_game.py b/bot/exts/evergreen/duck_game.py
index 04ae03a0..ffd1b882 100644
--- a/bot/exts/evergreen/duck_game.py
+++ b/bot/exts/evergreen/duck_game.py
@@ -175,7 +175,11 @@ class DuckGamesDirector(commands.Cog):
self.bot = bot
self.current_games = {}
- @commands.group(name='duckduckduckgoose', aliases=['dddg', 'duckgoose'], invoke_without_command=True)
+ @commands.group(
+ name='duckduckduckgoose',
+ aliases=['dddg', 'ddg', 'duckduckgoose', 'duckgoose'],
+ invoke_without_command=True
+ )
@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."""