Skip to content

Commit 27d391e

Browse files
committed
Merge pull request nandub#57 from fmitchell/master
Fix messages with new Adapter format
2 parents 48cc137 + 09cd6e2 commit 27d391e

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

src/irc.coffee

+17-17
Original file line numberDiff line numberDiff line change
@@ -5,34 +5,34 @@
55
Irc = require 'irc'
66

77
class IrcBot extends Adapter
8-
send: (user, strings...) ->
8+
send: (envelope, strings...) ->
99
for str in strings
1010
if not str?
1111
continue
12-
if user.room
13-
console.log "#{user.room} #{str}"
14-
@bot.say(user.room, str)
15-
else if user.name
16-
console.log "#{user.name} #{str}"
17-
@bot.say(user.name, str)
12+
if envelope.user.room
13+
console.log "#{envelope.user.room} #{str}"
14+
@bot.say(envelope.user.room, str)
15+
else if envelope.user.name
16+
console.log "#{envelope.user.name} #{str}"
17+
@bot.say(envelope.user.name, str)
1818
else
19-
console.log "#{user} #{str}"
20-
@bot.say(user, str)
19+
console.log "#{envelope.user} #{str}"
20+
@bot.say(envelope.user, str)
2121

22-
notice: (user, strings...) ->
22+
notice: (envelope, strings...) ->
2323
for str in strings
2424
if not str?
2525
continue
26-
if user.room
27-
console.log "notice #{user.room} #{str}"
28-
@bot.notice(user.room, str)
26+
if envelope.user.room
27+
console.log "notice #{envelope.user.room} #{str}"
28+
@bot.notice(envelope.user.room, str)
2929
else
30-
console.log "notice #{user.name} #{str}"
31-
@bot.notice(user.name, str)
30+
console.log "notice #{envelope.user.name} #{str}"
31+
@bot.notice(envelope.user.name, str)
3232

33-
reply: (user, strings...) ->
33+
reply: (envelope, strings...) ->
3434
for str in strings
35-
@send user, "#{user.name}: #{str}"
35+
@send envelope.user, "#{envelope.user.name}: #{str}"
3636

3737
join: (channel) ->
3838
self = @

0 commit comments

Comments
 (0)