We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8bc9843 + 2913a4d commit ae3e556Copy full SHA for ae3e556
src/irc.coffee
@@ -6,6 +6,8 @@ Irc = require 'irc'
6
class IrcBot extends Adapter
7
send: (user, strings...) ->
8
for str in strings
9
+ if not str?
10
+ continue
11
if user.room
12
console.log "#{user.room} #{str}"
13
@bot.say(user.room, str)
0 commit comments