Skip to content

Commit

Permalink
Changed the idiot GIF for understand keyword.
Browse files Browse the repository at this point in the history
  • Loading branch information
dblock committed Feb 9, 2017
1 parent aefdc02 commit 5afacff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/slack-ruby-bot/bot.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def self.instance
end

def self.call(client, data, _match)
client.say(channel: data.channel, text: "Sorry <@#{data.user}>, I don't understand that command!", gif: 'idiot')
client.say(channel: data.channel, text: "Sorry <@#{data.user}>, I don't understand that command!", gif: 'understand')
end
end
end
2 changes: 1 addition & 1 deletion lib/slack-ruby-bot/commands/unknown.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ class Unknown < Base
match(/^(?<bot>\S*)[\s]*(?<expression>.*)$/)

def self.call(client, data, _match)
client.say(channel: data.channel, text: "Sorry <@#{data.user}>, I don't understand that command!", gif: 'idiot')
client.say(channel: data.channel, text: "Sorry <@#{data.user}>, I don't understand that command!", gif: 'understand')
end
end
end
Expand Down

0 comments on commit 5afacff

Please sign in to comment.