From 7ca00525a1898dc37a1a52bccf6a8af50c8b2817 Mon Sep 17 00:00:00 2001 From: timriker Date: Sat, 7 Dec 2002 06:43:04 +0000 Subject: [PATCH] more on a line git-svn-id: https://svn.code.sf.net/p/infobot/code/trunk/blootbot@742 c11ca15a-4712-0410-83d8-924469b57eb5 --- src/Modules/UserDCC.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; } -- 2.39.5