From 97ed91562320bf23d3ca62194a732fb9d89bb8ba Mon Sep 17 00:00:00 2001 From: minima Date: Wed, 12 Mar 2003 18:02:11 +0000 Subject: [PATCH] arrange for chat announces only to go to spider nodes --- perl/DXProt.pm | 2 ++ 1 file changed, 2 insertions(+) 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); } } -- 2.34.1