From d679b005d641f4562eb10f0d033c83705d66f88d Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Tue, 29 Jun 2021 21:45:25 -0700 Subject: [PATCH] Plugins/RemindMe: allow any user to use -c --- Plugins/RemindMe.pm | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Plugins/RemindMe.pm b/Plugins/RemindMe.pm index 91e0fe92..4b332cc6 100644 --- a/Plugins/RemindMe.pm +++ b/Plugins/RemindMe.pm @@ -196,10 +196,6 @@ sub cmd_remindme { # option -c was provided; ensure user is an admin and bot is in channel if ($channel) { - if (not defined $admininfo) { - return "Only admins can create channel reminders."; - } - if (not $self->{pbot}->{channels}->is_active($channel)) { return "I'm not active in channel $channel."; }