pass ParsedLine objects on raw.send.<command> events
This commit is contained in:
parent
66393bcdbc
commit
b549773bf8
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ class Module(ModuleManager.BaseModule):
|
||||||
self.events.on("raw.send").on(event["line"].command).call_unsafe(
|
self.events.on("raw.send").on(event["line"].command).call_unsafe(
|
||||||
command=event["line"].command, args=event["line"].args,
|
command=event["line"].command, args=event["line"].args,
|
||||||
tags=event["line"].tags, server=event["server"],
|
tags=event["line"].tags, server=event["server"],
|
||||||
direction=utils.Direction.Send)
|
direction=utils.Direction.Send, line=event["line"])
|
||||||
|
|
||||||
# ping from the server
|
# ping from the server
|
||||||
@utils.hook("raw.received.ping")
|
@utils.hook("raw.received.ping")
|
||||||
|
|
Loading…
Reference in a new issue