From bfca9bc207331eadc8e9571a3d44cccd70ab6fc5 Mon Sep 17 00:00:00 2001 From: jesopo Date: Thu, 30 Aug 2018 11:13:05 +0100 Subject: default events on IRCLineHandler should use original_line, not line --- IRCLineHandler.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'IRCLineHandler.py') diff --git a/IRCLineHandler.py b/IRCLineHandler.py index b49717ae..138af67b 100644 --- a/IRCLineHandler.py +++ b/IRCLineHandler.py @@ -79,12 +79,12 @@ class LineHandler(object): if default_event or not hooks: if command.isdigit(): self.bot.events.on("received").on("numeric").on(command - ).call(line=line, line_split=line.split(" "), - number=command, server=server) + ).call(line=original_line, server=server, + line_split=original_line.split(" "), number=command) else: self.bot.events.on("received").on(command).call( - line=line, line_split=line.split(" "), command=command, - server=server) + line=original_line, line_split=original_line.split(" "), + command=command, server=server) # ping from the server def ping(self, event): -- cgit v1.3.1-10-gc9f91