diff --git a/lib/bot.js b/lib/bot.js index 57b8f36..caf1924 100644 --- a/lib/bot.js +++ b/lib/bot.js @@ -200,10 +200,6 @@ } }); }); - hear(/(it's|its|it was) (long|short|hard)/i, function(message) { - seen.setSeenUser(message.from, message.to); - return say(message.to, "That's what she said!"); - }); desc('what are the pulls on :user/:project', 'Get the latest pull requests for the GitHub repo :user/:project'); hear(/^what are the pulls on (.*)\/(.*)/i, function(message) { var proj, user; diff --git a/src/bot.coffee b/src/bot.coffee index af01cd0..8d357d1 100644 --- a/src/bot.coffee +++ b/src/bot.coffee @@ -158,10 +158,6 @@ hear /^movie me (.*)/i, (message) -> else say message.to, "#{message.from}: #{msg}" -hear /(it's|its|it was) (long|short|hard)/i, (message) -> - seen.setSeenUser message.from, message.to - say message.to, "That's what she said!" - desc 'what are the pulls on :user/:project', 'Get the latest pull requests for the GitHub repo :user/:project' hear /^what are the pulls on (.*)\/(.*)/i, (message) -> seen.setSeenUser message.from, message.to