[SimBot-commits] CVS: simbot/plugins recap.pl,1.19,1.20
Status: Abandoned
Brought to you by:
kstange
|
From: Kevin S. <ks...@us...> - 2005-07-29 06:44:48
|
Update of /cvsroot/simbot/simbot/plugins In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25622/plugins Modified Files: recap.pl Log Message: Fix two small bugs: services. sets mode TheSimBot +e is not a channel mode change; recap was logging /me with the nickname doubled. Index: recap.pl =================================================================== RCS file: /cvsroot/simbot/simbot/plugins/recap.pl,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -p -r1.19 -r1.20 --- recap.pl 28 Jul 2005 01:05:55 -0000 1.19 +++ recap.pl 29 Jul 2005 06:44:40 -0000 1.20 @@ -76,7 +76,7 @@ sub record_recap { if ($doing eq 'SAY') { $line .= "<$nick> $content"; } elsif ($doing eq 'ACTION') { - $line .= "* $nick $content"; + $line .= "* $content"; } elsif ($doing eq 'KICKED') { $line .= "$target kicked $nick from $channel" . ($content ? " ($content)" : ""); $departs{$nick} = 0; |