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:
jesopo 2019-01-27 07:16:09 +00:00
parent 1e72c39fda
commit 0bb2491399

View file

@ -20,7 +20,7 @@ class Module(ModuleManager.BaseModule):
@utils.hook("received.join")
def on_join(self, event):
self._check_modes(event["channel"], event["user"])
@utils.hook("received.account")
@utils.hook("received.account.login")
@utils.hook("internal.identified")
def on_account(self, event):
for channel in event["user"].channels: