diff options
author | Arjun Satarkar <me@arjunsatarkar.net> | 2024-03-27 17:51:02 +0000 |
---|---|---|
committer | Arjun Satarkar <me@arjunsatarkar.net> | 2024-03-27 17:51:02 +0000 |
commit | 99d5f492a61ac93ded3fde2c86fd05e26a52182c (patch) | |
tree | 75feca04982ee510e3adb269e016aab886957fa1 /question_of_the_day/question_of_the_day.py | |
parent | 23ba0fb8fc5070ba30a43035970775247da370f3 (diff) | |
download | aps-cogs-99d5f492a61ac93ded3fde2c86fd05e26a52182c.tar aps-cogs-99d5f492a61ac93ded3fde2c86fd05e26a52182c.tar.gz aps-cogs-99d5f492a61ac93ded3fde2c86fd05e26a52182c.zip |
question_of_the_day: make suggest and add confirmation quieter
Diffstat (limited to 'question_of_the_day/question_of_the_day.py')
-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): |