diff options
| -rw-r--r-- | bot/cogs/reminders.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bot/cogs/reminders.py b/bot/cogs/reminders.py index 3f8378426..e8177107b 100644 --- a/bot/cogs/reminders.py +++ b/bot/cogs/reminders.py @@ -14,7 +14,7 @@ from bot.constants import ( POSITIVE_REPLIES, STAFF_ROLES, URLs ) from bot.pagination import LinePaginator -from bot.utils.checks import with_role_check +from bot.utils.checks import without_role_check from bot.utils.scheduling import Scheduler from bot.utils.time import humanize_delta, parse_rfc1123, wait_until @@ -188,8 +188,8 @@ class Reminders(Scheduler): embed = Embed() - # Make sure the reminder should actually be made. - if with_role_check(ctx, *STAFF_ROLES): + # If the user is not staff, we need to verify whether or not to make a reminder at all. + if without_role_check(ctx, *STAFF_ROLES): # If they don't have permission to set a reminder in this channel if ctx.channel.id not in WHITELISTED_CHANNELS: |