X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fset%2Fbbs.pl;h=9a3f517a30adc03f2641b3ab8bed8b0400bcbdcc;hb=16b98fc9cae1d4fb357aad17850a2aa1a601b053;hp=8709dcd06646786a3766406cb607964b89c4b22f;hpb=903181489cdfc7998932577c8978b9b8101d105b;p=spider.git diff --git a/cmd/set/bbs.pl b/cmd/set/bbs.pl index 8709dcd0..9a3f517a 100644 --- a/cmd/set/bbs.pl +++ b/cmd/set/bbs.pl @@ -19,6 +19,14 @@ return (1, $self->msg('e5')) if $self->priv < 5; foreach $call (@args) { $call = uc $call; + if ($call eq $main::mycall) { + push @out, $self->msg('e11', $call); + next; + } + if ($call eq $main::myalias) { + push @out, $self->msg('e11', $call); + next; + } my $chan = DXChannel::get($call); if ($chan) { push @out, $self->msg('nodee1', $call);