From: timriker Date: Sat, 7 Dec 2002 06:43:04 +0000 (+0000) Subject: more on a line X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=8f5fc9c8da8cea7365d62fc0820ffbb08eb76426;p=infobot.git more on a line git-svn-id: https://svn.code.sf.net/p/infobot/code/trunk@742 c11ca15a-4712-0410-83d8-924469b57eb5 --- diff --git a/blootbot/src/Modules/UserDCC.pl b/blootbot/src/Modules/UserDCC.pl index f91e1b1..91e2f03 100644 --- a/blootbot/src/Modules/UserDCC.pl +++ b/blootbot/src/Modules/UserDCC.pl @@ -576,14 +576,14 @@ sub userDCC { my $str = ""; foreach (sort keys %{ $chanconf{$chan} }) { my $newstr = join(', ', @items); - if (length $newstr > 60) { - &pSReply(" $str"); + if (length $newstr > 63) { + &pSReply(" $str"); @items = (); } $str = $newstr; push(@items, "$_ => $chanconf{$chan}{$_}"); } - &pSReply(" $str") if (@items); + &pSReply(" $str") if (@items); } return; }