fix Dice plugin init

This commit is contained in:
Brian S. Stephan 2021-04-24 12:57:12 -05:00
parent dc5f243608
commit ca8798453c
1 changed files with 3 additions and 2 deletions

View File

@ -14,11 +14,12 @@ logger = logging.getLogger(__name__)
class Dice(Plugin):
"""Roll simple or complex dice strings."""
def __init__(self):
def __init__(self, bot, connection, event):
"""Set up the plugin."""
super(Dice, self).__init__()
self.roller = DiceRoller()
super(Dice, self).__init__(bot, connection, event)
def start(self):
"""Set up the handlers."""
self.connection.reactor.add_global_regex_handler(['pubmsg', 'privmsg'], r'^!roll\s+(.*)$',