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=7ca00525a1898dc37a1a52bccf6a8af50c8b2817;p=infobot.git more on a line git-svn-id: https://svn.code.sf.net/p/infobot/code/trunk/blootbot@742 c11ca15a-4712-0410-83d8-924469b57eb5 --- diff --git a/src/Modules/UserDCC.pl b/src/Modules/UserDCC.pl index f91e1b1..91e2f03 100644 --- a/src/Modules/UserDCC.pl +++ b/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; }