Skip to content

Commit 29700cd

Browse files
committed
Added robot.leave support
1 parent dc0b0e6 commit 29700cd

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
@@ -127,6 +127,8 @@ class IrcBot extends Adapter
127127

128128
bot.addListener 'part', (channel, who, reason) ->
129129
console.log('%s has left %s: %s', who, channel, reason)
130+
user = self.createUser channel, who
131+
self.receive new Robot.LeaveMessage(user)
130132

131133
bot.addListener 'kick', (channel, who, _by, reason) ->
132134
console.log('%s was kicked from %s by %s: %s', who, channel, _by, reason)

0 commit comments

Comments
 (0)