From 99d5f492a61ac93ded3fde2c86fd05e26a52182c Mon Sep 17 00:00:00 2001 From: Arjun Satarkar Date: Wed, 27 Mar 2024 13:51:02 -0400 Subject: question_of_the_day: make suggest and add confirmation quieter --- question_of_the_day/question_of_the_day.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'question_of_the_day/question_of_the_day.py') 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): -- cgit v1.2.3-57-g22cb