From f88ed4d60e748007818eedc4837b45dde4d1a7d5 Mon Sep 17 00:00:00 2001 From: mcmlxxix <> Date: Thu, 28 Apr 2011 19:39:02 +0000 Subject: [PATCH] fix pipe command --- exec/load/ircbot_commands.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exec/load/ircbot_commands.js b/exec/load/ircbot_commands.js index ec0b8313a1..8c050d2f29 100644 --- a/exec/load/ircbot_commands.js +++ b/exec/load/ircbot_commands.js @@ -614,7 +614,7 @@ Server_Commands["PRIVMSG"] = function (srv,cmd,onick,ouh) { if (srv.pipe && srv.pipe[chan.name.toUpperCase()]) { var thispipe = srv.pipe[chan.name.toUpperCase()]; thispipe.srv.o(thispipe.target, "<" + onick + "> " - + IRC_string(cmd.join(" "), 2)); + + IRC_string(cmd.join(" "), 1)); } cmd=parse_cmd_prefix(cmd); -- GitLab