From d6c3eba95ee789ef21f582af4b9ed65082bdf506 Mon Sep 17 00:00:00 2001 From: profitroll Date: Fri, 25 Apr 2025 22:38:12 +0200 Subject: [PATCH] Prepared partial support for #12 --- cogs/guess.py | 3 ++- config_example.json | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/cogs/guess.py b/cogs/guess.py index 665a644..c290d7b 100644 --- a/cogs/guess.py +++ b/cogs/guess.py @@ -47,7 +47,8 @@ class Guess(Cog): if answer.lower() != stage.answer.lower(): # TODO Make a nice message - await ctx.respond("Provided answer is wrong.") + # await ctx.respond("Provided answer is wrong.") + await ctx.respond(self.bot.config["emojis"]["guess_wrong"]) return next_stage_index = stage.sequence + 1 diff --git a/config_example.json b/config_example.json index 96cec61..d809b7b 100644 --- a/config_example.json +++ b/config_example.json @@ -31,5 +31,8 @@ "redis": { "uri": "redis://127.0.0.1:6379/0" } + }, + "emojis": { + "guess_wrong": null } } \ No newline at end of file