diff --git a/src/irc.coffee b/src/irc.coffee index 22f5a6a..8a82054 100644 --- a/src/irc.coffee +++ b/src/irc.coffee @@ -6,6 +6,8 @@ Irc = require 'irc' class IrcBot extends Adapter send: (user, strings...) -> for str in strings + if not str? + continue if user.room console.log "#{user.room} #{str}" @bot.say(user.room, str)