Must've accidentally removed addressedRegexps during the conversion to registry.

This commit is contained in:
Jeremy Fincher 2004-01-30 22:12:27 +00:00
parent 6049e4c586
commit 3f4a4297fe
1 changed files with 2 additions and 2 deletions

View File

@ -67,8 +67,8 @@ conf.registerChannelValue(conf.supybot.plugins.Karma, 'karmaMostDisplay',
registry.Integer(25, """Determines how many karma things are shown when registry.Integer(25, """Determines how many karma things are shown when
the most command is called.'""")) the most command is called.'"""))
class Karma(callbacks.PrivmsgCommandAndRegexp, class Karma(callbacks.PrivmsgCommandAndRegexp, plugins.ChannelDBHandler):
plugins.ChannelDBHandler): addressedRegexps = ['increaseKarma', 'decreaseKarma']
def __init__(self): def __init__(self):
callbacks.PrivmsgCommandAndRegexp.__init__(self) callbacks.PrivmsgCommandAndRegexp.__init__(self)
plugins.ChannelDBHandler.__init__(self) plugins.ChannelDBHandler.__init__(self)