From 387c5e156909adbf42951179bef85afa37cbf453 Mon Sep 17 00:00:00 2001 From: Christopher Hart Date: Tue, 29 Mar 2022 19:52:24 -0400 Subject: [PATCH] Add feedback link to embeds --- bot/embeds/trivia.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/bot/embeds/trivia.py b/bot/embeds/trivia.py index d592b30..16277b6 100644 --- a/bot/embeds/trivia.py +++ b/bot/embeds/trivia.py @@ -39,6 +39,10 @@ def trivia_ok_multiple_choice_question( @command_ok(title="__Trivia Answer Correct__") def trivia_ok_correct(embed: Embed, explanation: Optional[str] = None) -> Embed: """Embed for when answer to trivia question is correct.""" + embed.description = ( + "*Problem with this question? " + "[Report it here!](https://github.com/ChristopherJHart/discord-it-trivia/issues)*" + ) embed.add_field( name="Response", value="Your answer to the trivia question was correct!", @@ -54,6 +58,10 @@ def trivia_ok_incorrect( embed: Embed, correct_answer: str, explanation: Optional[str] = None ) -> Embed: """Embed for when answer to trivia question is incorrect.""" + embed.description = ( + "*Problem with this question? " + "[Report it here!](https://github.com/ChristopherJHart/discord-it-trivia/issues)*" + ) embed.add_field( name="Response", value="Your answer to the trivia question was incorrect.",