We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8bc9843 commit 2913a4dCopy full SHA for 2913a4d
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