Skip to content

Instantly share code, notes, and snippets.

@suisho
Created February 27, 2013 19:24
Show Gist options
  • Save suisho/5050844 to your computer and use it in GitHub Desktop.
Save suisho/5050844 to your computer and use it in GitHub Desktop.
IrcBot = require 'hubot-irc'
module.exports = (robot) ->
dummy = IrcBot.use(robot)
if(robot.adapter.constructor is not dummy.constructor)
return
robot.enter () ->
bot = robot.adapter.bot
bot.say = (target, str) ->
this.notice(target, str)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment