Skip to content

Commit 68c35fe

Browse files
committed
append on constructor
1 parent df2a032 commit 68c35fe

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

src/irc.coffee

+8-5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ Adapter = require('hubot').adapter()
44
Irc = require 'irc'
55

66
class IrcBot extends Adapter
7+
constructor: (@robot) ->
8+
super @robot
9+
10+
@robot.notice = (user, strings...) ->
11+
@adapter.notice user, strings...
12+
13+
@robot.Response = IrcResponse
14+
715
send: (user, strings...) ->
816
for str in strings
917
if not str?
@@ -124,10 +132,5 @@ class IrcResponse extends Robot.Response
124132
@robot.adapter.notice @message.user, strings...
125133

126134
exports.use = (robot) ->
127-
robot.notice = (user, strings...) ->
128-
@adapter.notice user, strings...
129-
130-
robot.Response = IrcResponse
131-
132135
new IrcBot robot
133136

0 commit comments

Comments
 (0)