Skip to content
This repository has been archived by the owner on May 12, 2020. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Make Lampstand read 'Thanks, Lampstand' from the Thanks You able inst…
…ead of the Fuck You table
  • Loading branch information
aquarion committed Feb 25, 2012
1 parent 08c2b36 commit 0b14543
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lampstand/reactions/generic.py
Expand Up @@ -56,7 +56,7 @@ def __init__(self, connection):
self.reactions.append(("(Screw|Fuck) you,? %s" % connection.nickname, 'No', fuckyou))
self.channelMatch.append(re.compile("(Screw|Fuck) you.? %s" % (connection.nickname), re.IGNORECASE))

self.reactions.append(("thank( you|s),? %s" % connection.nickname, '', fuckyou))
self.reactions.append(("thank( you|s),? %s" % connection.nickname, '', thankyou))
self.channelMatch.append(re.compile("thank( you|s),? %s" % (connection.nickname), re.IGNORECASE))

self.reactions.append(('^\.\.\.$', '', ("%dots!", "%MORE DOTS!", "%[... Suddenly, everything goes quiet...]")))
Expand Down

0 comments on commit 0b14543

Please sign in to comment.