The event fired when we get an account-notify
message iss
`received.account.login`, not `received.account` (auto_mode.py)
This commit is contained in:
parent
1e72c39fda
commit
0bb2491399
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ class Module(ModuleManager.BaseModule):
|
||||||
@utils.hook("received.join")
|
@utils.hook("received.join")
|
||||||
def on_join(self, event):
|
def on_join(self, event):
|
||||||
self._check_modes(event["channel"], event["user"])
|
self._check_modes(event["channel"], event["user"])
|
||||||
@utils.hook("received.account")
|
@utils.hook("received.account.login")
|
||||||
@utils.hook("internal.identified")
|
@utils.hook("internal.identified")
|
||||||
def on_account(self, event):
|
def on_account(self, event):
|
||||||
for channel in event["user"].channels:
|
for channel in event["user"].channels:
|
||||||
|
|
Loading…
Reference in a new issue