Channel: alert should not require the caller to have op capability

Signed-off-by: James Vega <jamessan@users.sourceforge.net>
This commit is contained in:
James Vega 2009-06-30 11:06:17 -04:00
parent 461f943d97
commit ba29f0787c
1 changed files with 1 additions and 1 deletions

View File

@ -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