2 # show a cluster thingy
7 my ($self, $line) = @_;
8 my @list = split /\s+/, $line; # generate a list of callsigns
9 @list = ($self->call) if !@list; # my channel if no callsigns
13 foreach $call (@list) {
15 my $ref = DXCluster->get_exact($call);
17 @out = print_all_fields($self, $ref, "Cluster Information $call");
19 push @out, "Cluster: $call not found";
21 push @out, "" if @list > 1;