Skip to content

Commit 9cd69bc

Browse files
committed
Add room information when a user joins/leaves
1 parent 6cf6acd commit 9cd69bc

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/irc.coffee

+2
Original file line numberDiff line numberDiff line change
@@ -258,11 +258,13 @@ class IrcBot extends Adapter
258258
bot.addListener 'join', (channel, who) ->
259259
console.log('%s has joined %s', who, channel)
260260
user = self.createUser channel, who
261+
user.room = channel
261262
self.receive new EnterMessage(user)
262263

263264
bot.addListener 'part', (channel, who, reason) ->
264265
console.log('%s has left %s: %s', who, channel, reason)
265266
user = self.createUser '', who
267+
user.room = channel
266268
self.receive new LeaveMessage(user)
267269

268270
bot.addListener 'kick', (channel, who, _by, reason) ->

0 commit comments

Comments
 (0)