diff --git a/brmd/brmd.pl b/brmd/brmd.pl index 6935ce0..8f95f7c 100755 --- a/brmd/brmd.pl +++ b/brmd/brmd.pl @@ -554,9 +554,10 @@ sub irc_public { foreach my $subpod (@{$pod->subpods}) { if ($subpod->plaintext) { my $answer = ''; - $answer .= ($pod->title . ' - ') if $pod->title; - $answer .= ($subpod->title . ' - ') if $subpod->title; + $answer .= ($pod->title . ': ') if $pod->title; + $answer .= ($subpod->title . ': ') if $subpod->title; $answer .= $subpod->plaintext; + $answer =~ s/\n/, /g; $irc->yield( privmsg => $channel => "$nick: $answer" ); } }