summaryrefslogtreecommitdiffstats
path: root/lib/Crawl/Bot/Plugin/Logging.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Crawl/Bot/Plugin/Logging.pm')
-rw-r--r--lib/Crawl/Bot/Plugin/Logging.pm25
1 files changed, 0 insertions, 25 deletions
diff --git a/lib/Crawl/Bot/Plugin/Logging.pm b/lib/Crawl/Bot/Plugin/Logging.pm
index cea86cd..506a9b2 100644
--- a/lib/Crawl/Bot/Plugin/Logging.pm
+++ b/lib/Crawl/Bot/Plugin/Logging.pm
@@ -71,32 +71,7 @@ sub said {
# Only log the first channel
if ($args->{channel} eq $self->bot->{channels}[0]) {
$self->log_message("<$args->{who}> $args->{body}");
- } elsif ($args->{channel} ne "msg"
- and $args->{who} =~ /^(?:Gretell|Henzell|\|amethyst)$/
- and $args->{body} =~ /^(\S+) .*became the Champion of Cheibriados/)
- {
- $self->say(
- channel => $args->{channel},
- body => "Did I ever mention that $1 is one of my favourite people?"
- );
- } elsif ($args->{channel} ne "msg"
- and $args->{who} =~ /^(?:Gretell|Henzell|\|amethyst)$/
- and $args->{body} =~ /^(\S+) .*abandoned Cheibriados\./)
- {
- $self->say(
- channel => $args->{channel},
- body => "Fine, $1, I didn't like you either!"
- );
- } elsif ($args->{channel} ne "msg"
- and $args->{who} =~ /^(?:Gretell|Henzell|\|amethyst)$/
- and $args->{body} =~ /^(Chei\S+) .*became the Champion of [^C]/)
- {
- $self->say(
- channel => $args->{channel},
- body => "Did I ever mention that $1 is a heretic?"
- );
}
-
return;
}