!raw needs to parse the line it's given in to an IRCParsedLine now
This commit is contained in:
parent
c6699c509e
commit
f4a403836b
1 changed files with 2 additions and 1 deletions
|
@ -18,7 +18,8 @@ class Module(ModuleManager.BaseModule):
|
||||||
:usage: <raw line>
|
:usage: <raw line>
|
||||||
:permission: raw
|
:permission: raw
|
||||||
"""
|
"""
|
||||||
event["server"].send(event["args"])
|
line = utils.irc.parse_line(event["args"])
|
||||||
|
event["server"].send(line)
|
||||||
|
|
||||||
@utils.hook("received.command.part")
|
@utils.hook("received.command.part")
|
||||||
def part(self, event):
|
def part(self, event):
|
||||||
|
|
Loading…
Reference in a new issue