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
Allow 'screw you' as an alias for 'fuck you'
  • Loading branch information
aquarion committed Sep 3, 2011
1 parent 5772a88 commit 6436c0d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lampstand/reactions/generic.py
Expand Up @@ -32,7 +32,7 @@ def __init__(self, connection):
("make me a sandwich", "", "Yeah, right."),
("sudo make me a sandwich", "", "sudo go stick your head in a pig"),
("(go )?up$", "", "Gravity is harsh mistress."),
("fuck you", "No.", fuckyou)
("(fuck|screw) you", "No.", fuckyou)
]

self.channelMatch = []
Expand All @@ -46,8 +46,8 @@ def __init__(self, connection):
self.reactions.append(('.*pokes %s' % connection.nickname, '', "Do I look like a facebook user? Fuck off."))
self.channelMatch.append(re.compile(".*pokes %s" % (connection.nickname), re.IGNORECASE))

self.reactions.append(("Fuck you,? %s" % connection.nickname, 'No', fuckyou))
self.channelMatch.append(re.compile("Fuck you,? %s" % (connection.nickname), re.IGNORECASE))
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(('^\.\.\.$', '', ("%dots!", "%MORE DOTS!", "%[... Suddenly, everything goes quiet...]")))
self.channelMatch.append(re.compile("^\.\.\.$", re.IGNORECASE))
Expand Down

0 comments on commit 6436c0d

Please sign in to comment.