Skip to content

Commit 411f15f

Browse files
committed
Merge pull request nandub#69 from suisho/notice_mode
Add send notice mode
2 parents 2fb12f7 + 7944bf8 commit 411f15f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/irc.coffee

+3-2
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,10 @@ class IrcBot extends Adapter
3939
unless target
4040
console.log "ERROR: Not sure who to send to. envelope=", envelope
4141
return
42-
42+
43+
speak = if process.env.HUBOT_IRC_SEND_NOTICE_MODE? then "notice" else "say"
4344
for str in strings
44-
@bot.say target, str
45+
@bot[speak] target, str
4546

4647
notice: (envelope, strings...) ->
4748
for str in strings

0 commit comments

Comments
 (0)