diff options
author | David Phillips <david@sighup.nz> | 2019-10-09 19:11:48 +1300 |
---|---|---|
committer | David Phillips <david@sighup.nz> | 2019-10-09 19:11:48 +1300 |
commit | 8c01dd91952ab2359c9d34b1ed2b0802fb2a2962 (patch) | |
tree | 715703e89d381f80db0577e416827cffd5099ced /Plugin | |
parent | 6ded0c1f6f34e115f6e60db0e475cf9cbce04de5 (diff) | |
download | idalius-8c01dd91952ab2359c9d34b1ed2b0802fb2a2962.tar.xz |
Natural: Allow "shut it" and friends
Diffstat (limited to 'Plugin')
-rw-r--r-- | Plugin/Natural.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Plugin/Natural.pm b/Plugin/Natural.pm index 3d16eed..58c7f96 100644 --- a/Plugin/Natural.pm +++ b/Plugin/Natural.pm @@ -44,7 +44,7 @@ sub choose_mention_response { return some("hi $nick", "hey $nick", "sup $nick") . some("", ", how goes it?"); } elsif ($what =~ /\b(thanks|thx|ta)\b/i) { return some("don't mention it", "that's ok", ":)", "not a problem"); - } elsif ($what =~ /\b(shush|(shit|shut)(\s+the\s+fuck|)\s+up|stfu)\b/i) { + } elsif ($what =~ /\b(shush|(shit|shut)(\s+the\s+fuck|)\s+(up|it)|stfu)\b/i) { return some("$nick: shush yourself", "shut up, $nick", "nou $nick", "sorry $nick", ":("); } elsif ($what =~ /\b(fuck\s+(off?|you|u)|fucking)\b/i) { return some("$nick: take your meds", "stop harassing me", "ease up on the drink, mate", "ooh big boy angry $nick has come out to play"); |