From d8ab884fcb6496a07d740f399f220e72eccad3e5 Mon Sep 17 00:00:00 2001 From: Elliott Foster Date: Tue, 8 May 2012 00:47:45 -0500 Subject: [PATCH] Pass command arguments all toghether. --- src/irc.coffee | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/irc.coffee b/src/irc.coffee index ad5757c..b52b8ce 100644 --- a/src/irc.coffee +++ b/src/irc.coffee @@ -48,8 +48,7 @@ class IrcBot extends Adapter console.log('left %s', channel) command: (command, strings...) -> - for str in strings - @bot.send command, str + @bot.send command, strings... run: -> self = @