Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMoritz Lenz <moritz@faui2k3.org>2010-04-27 18:12:09 (GMT)
committer Moritz Lenz <moritz@faui2k3.org>2010-04-27 18:12:09 (GMT)
commit16252164fb1a2e3ad2b618a0b94cbe32887f4bf2 (patch)
tree2ada37a721cd8f6d895b93b826a86f9630fc2012
parentf60183b7ec7936c0f2d7abfa16db0797572e3885 (diff)
fix reporting of kicked nick, gurjeet++
-rwxr-xr-xilbot2.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/ilbot2.pl b/ilbot2.pl
index 734d541..afd82ff 100755
--- a/ilbot2.pl
+++ b/ilbot2.pl
@@ -111,7 +111,7 @@ use Data::Dumper;
sub kicked {
my $self = shift;
my $e = shift;
- dbwrite($e->{channel}, "", $e->{nick} . ' was kicked by ' . $e->{who} . ': ' . $e->{reason});
+ dbwrite($e->{channel}, "", $e->{kicked} . ' was kicked by ' . $e->{who} . ': ' . $e->{reason});
return undef;
}