From 702aa5a75a6be73bd9d1c817ee751a78020f8a0c Mon Sep 17 00:00:00 2001 From: Conatum Date: Sat, 29 Jan 2022 02:58:51 +0200 Subject: [PATCH] fix (rroles): Forgotten argument to `reaction_ask`. --- bot/modules/guild_admin/reaction_roles/command.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bot/modules/guild_admin/reaction_roles/command.py b/bot/modules/guild_admin/reaction_roles/command.py index d4b0342c..e31e9204 100644 --- a/bot/modules/guild_admin/reaction_roles/command.py +++ b/bot/modules/guild_admin/reaction_roles/command.py @@ -352,6 +352,7 @@ async def cmd_reactionroles(ctx, flags): elif not target_id: # Confirm enabling of all reaction messages await reaction_ask( + ctx, "Are you sure you want to enable all reaction role messages in this server?", timeout_msg="Prompt timed out, no reaction roles enabled.", cancel_msg="User cancelled, no reaction roles enabled." @@ -392,6 +393,7 @@ async def cmd_reactionroles(ctx, flags): elif not target_id: # Confirm disabling of all reaction messages await reaction_ask( + ctx, "Are you sure you want to disable all reaction role messages in this server?", timeout_msg="Prompt timed out, no reaction roles disabled.", cancel_msg="User cancelled, no reaction roles disabled." @@ -431,6 +433,7 @@ async def cmd_reactionroles(ctx, flags): elif not target_id: # Confirm disabling of all reaction messages await reaction_ask( + ctx, "Are you sure you want to remove all reaction role messages in this server?", timeout_msg="Prompt timed out, no messages removed.", cancel_msg="User cancelled, no messages removed."