We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ad567c0 + decaf4d commit ab7aac0Copy full SHA for ab7aac0
src/irc.coffee
@@ -17,6 +17,11 @@ class IrcBot extends Adapter
17
for str in strings
18
@bot.say target, str
19
20
+ topic: (envelope, strings...) ->
21
+ data = strings.join " / "
22
+ channel = envelope.room
23
+ @bot.send 'TOPIC', channel, data
24
+
25
emote: (envelope, strings...) ->
26
# Use @notice if SEND_NOTICE_MODE is set
27
return @notice envelope, strings if process.env.HUBOT_IRC_SEND_NOTICE_MODE?
0 commit comments