return (1, $self->msg('dx3'));
}
+
# make line the rest of the line
$line = $f[2] || " ";
@f = split /\s+/, $line;
# Store it here (but only if it isn't baddx)
-if ($DXProt::baddx->in($spotted)) {
+if ($DXProt::baddx->in($spotted) || $freq =~ /^69/) {
+
+ # heaven forfend that we get a 69Mhz band :-)
+ if ($freq =~ /^69/) {
+ $self->badcount(($self->badcount||0) + 1);
+ }
+
my $buf = Spot::formatb($self->user->wantgrid, $freq, $spotted, $main::systime, $line, $spotter);
push @out, $buf;
} else {