aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bot/exts/evergreen/duck_game.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/bot/exts/evergreen/duck_game.py b/bot/exts/evergreen/duck_game.py
index 10ff49aa..16fb534d 100644
--- a/bot/exts/evergreen/duck_game.py
+++ b/bot/exts/evergreen/duck_game.py
@@ -185,6 +185,7 @@ class DuckGamesDirector(commands.Cog):
async def start_game(self, ctx: commands.Context) -> None:
"""Generate a board, send the game embed, and end the game after a time limit."""
if ctx.channel.id in self.current_games:
+ await ctx.send("There's already a game running!")
return
minimum_solutions, = random.choices(range(len(SOLN_DISTR)), weights=SOLN_DISTR)