Subject: | Typo in NickReclaim.pm |
I found a typo that causes the NickReclaim to unnecessarily try to
change to its current nickname.
Subject: | nickreclaim.diff |
--- NickReclaim.pm 2008-01-13 07:53:12.000000000 +0000
+++ NickReclaim.pm.new 2008-01-13 07:53:00.000000000 +0000
@@ -91,7 +91,7 @@
#...and it's not a startup routine where ->nick_name cannot
#...be used (and needs to be reclaimed)
return PCI_EAT_NONE
- if $self->{_did_start} and $irc->nick_name() eq $offending;
+ if $self->{_did_start} and $irc->nick_name() ne $offending;
# we will store the nick with the underscore in ->{_claims}...
#...so in sub U_nick{} we would know which ones were caused...