Prepared partial support for #12

This commit is contained in:
2025-04-25 22:38:12 +02:00
parent d093754646
commit d6c3eba95e
2 changed files with 5 additions and 1 deletions

View File

@@ -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

View File

@@ -31,5 +31,8 @@
"redis": {
"uri": "redis://127.0.0.1:6379/0"
}
},
"emojis": {
"guess_wrong": null
}
}