aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Daniel Gu <[email protected]>2023-08-14 00:27:24 +0800
committerGravatar n0Oo0Oo0b <[email protected]>2023-08-26 23:44:16 +0800
commit41e71d9b4618f1dfd2a4dc77e87ac91ea602a7ec (patch)
tree2ffc7b769f81d6a94b78cde424715cf039bc20d8
parentApply suggestions from code review (diff)
Reply to original message when sending confirmation prompt
-rw-r--r--bot/exts/utils/reminders.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/utils/reminders.py b/bot/exts/utils/reminders.py
index cf12e279f..1e3df4a53 100644
--- a/bot/exts/utils/reminders.py
+++ b/bot/exts/utils/reminders.py
@@ -579,7 +579,7 @@ class Reminders(Cog):
log.debug(f"{ctx.author} is an admin, asking for confirmation to modify someone else's.")
confirmation_view = ModifyConfirmationView(ctx.author)
- await ctx.send(
+ await ctx.reply(
"Are you sure you want to modify someone else's reminder?",
view=confirmation_view,
)