diff options
| author | 2019-11-21 15:49:08 +0000 | |
|---|---|---|
| committer | 2019-11-21 15:49:08 +0000 | |
| commit | 2dfc55fb9fa0a6cff1c24895f4c788149c3922a8 (patch) | |
| tree | d0979ab588a9f3f6bb6f2a2b43911a15eda72664 /modules/line_handler/__init__.py | |
| parent | add a way to execute commands through bitbotd (use for master-password) (diff) | |
| signature | ||
refactor permissions and allow hostmasks to be assigned to accounts
Diffstat (limited to 'modules/line_handler/__init__.py')
| -rw-r--r-- | modules/line_handler/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/line_handler/__init__.py b/modules/line_handler/__init__.py index 5001266c..ddea6fdc 100644 --- a/modules/line_handler/__init__.py +++ b/modules/line_handler/__init__.py @@ -218,12 +218,12 @@ class Module(ModuleManager.BaseModule): # response to a WHO command for user information @utils.hook("raw.received.352", default_event=True) def handle_352(self, event): - core.handle_352(event) + core.handle_352(self.events, event) # response to a WHOX command for user information, including account name @utils.hook("raw.received.354", default_event=True) def handle_354(self, event): - core.handle_354(event) + core.handle_354(self.events, event) # response to an empty mode command @utils.hook("raw.received.324") |
