diff options
Diffstat (limited to 'Plugin')
-rw-r--r-- | Plugin/Natural.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Plugin/Natural.pm b/Plugin/Natural.pm index b324e8b..adc044c 100644 --- a/Plugin/Natural.pm +++ b/Plugin/Natural.pm @@ -69,9 +69,9 @@ sub choose_normal_response { return some("D:", "ono", "*throws a lifeline to $nick"); } elsif ($what =~ /(:D|:\)|D:|:\||:\\|:C|:S)/) { return some(":D", ":)", "D:", ":|", ":/", ":\\", ":S", ">:D", ">:(", ">>>:CCCC"); - } elsif ($what =~ /^o\/$/) { + } elsif ($what eq "o/") { return "\\o"; - } elsif ($what =~ /^\\o$/) { + } elsif ($what eq "\\o") { return "o/"; } return; |