From: minima Date: Wed, 12 Mar 2003 18:02:11 +0000 (+0000) Subject: arrange for chat announces only to go to spider nodes X-Git-Tag: PRE-1-52~15 X-Git-Url: http://www.dxcluster.org/gitweb/gitweb.cgi?p=spider.git;a=commitdiff_plain;h=97ed91562320bf23d3ca62194a732fb9d89bb8ba arrange for chat announces only to go to spider nodes --- diff --git a/perl/DXProt.pm b/perl/DXProt.pm index 25e98cc4..adf112b0 100644 --- a/perl/DXProt.pm +++ b/perl/DXProt.pm @@ -1841,7 +1841,9 @@ sub send_chat foreach $dxchan (@dxchan) { next if $dxchan == $main::me; next if $dxchan == $self && $self->is_node; + next unless $dxchan->is_spider || $dxchan->is_ak1a; next if $target eq 'LOCAL' && $dxchan->is_node; + $dxchan->chat($line, $self->{isolate}, $target, $_[1], $text, @_, $self->{call}, $ann_dxcc, $ann_itu, $ann_cq, $org_dxcc, $org_itu, $org_cq); } }