diff options
-rw-r--r-- | question_of_the_day/question_of_the_day.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/question_of_the_day/question_of_the_day.py b/question_of_the_day/question_of_the_day.py index f6d7086..786bb6d 100644 --- a/question_of_the_day/question_of_the_day.py +++ b/question_of_the_day/question_of_the_day.py @@ -116,7 +116,7 @@ class QuestionOfTheDay(commands.Cog): ) return questions.append({"question": question, "asked_by": ctx.author.id}) - await ctx.reply("Question added!") + await ctx.react_quietly("✅") @qotd.command() async def list(self, ctx): @@ -251,7 +251,7 @@ class QuestionOfTheDay(commands.Cog): suggested_questions.append( {"question": question, "asked_by": ctx.author.id} ) - await ctx.reply("Added question to suggestion queue!") + await ctx.react_quietly("✅") @qotd.command() async def suggestions(self, ctx): |