From ba29f0787c86d5cf19b545e9e9a31cbdca5e9a95 Mon Sep 17 00:00:00 2001 From: James Vega Date: Tue, 30 Jun 2009 11:06:17 -0400 Subject: [PATCH] Channel: alert should not require the caller to have op capability Signed-off-by: James Vega --- plugins/Channel/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Channel/plugin.py b/plugins/Channel/plugin.py index 4b7758f8d..7cb51f937 100644 --- a/plugins/Channel/plugin.py +++ b/plugins/Channel/plugin.py @@ -813,7 +813,7 @@ class Channel(callbacks.Plugin): capability. """ self.alertOps(irc, channel, text, frm=msg.nick) - alert = wrap(alert, ['op', 'text']) + alert = wrap(alert, ['inChannel', 'text']) Class = Channel