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