summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeil Moore <neil@s-z.org>2012-07-12 02:05:23 -0500
committerNeil Moore <neil@s-z.org>2012-07-12 02:05:47 -0500
commit41e96a23cf877893e11de9490d205a1cb854ad57 (patch)
tree3a13cc544b18e526d382db4bdcb2f0ec6e4a33a5
parent405128d13451397e1f914c707027112e97c6cd58 (diff)
downloadcrawlbot-41e96a23cf877893e11de9490d205a1cb854ad57.tar.gz
crawlbot-41e96a23cf877893e11de9490d205a1cb854ad57.zip
Remove easter eggs.
Not entirely unexpectedly, they stop being funny after a while. This reverts commit ddba2facafd2a229d34f8502b08b283d2e41bb5f. This reverts commit 02e11ad7483c5d43b1cc9c788e81a9cf69d4b2b5.
-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;
}