start work on NP stuff seriously
[spider.git] / cmd / set / pc90.pl
diff --git a/cmd/set/pc90.pl b/cmd/set/pc90.pl
deleted file mode 100644 (file)
index cf90651..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-#
-# set the pc90 flag
-#
-# Copyright (c) 1998 - Dirk Koopman
-#
-# $Id$
-#
-
-my ($self, $line) = @_;
-my @args = split /\s+/, $line;
-my $call;
-my @out;
-
-@args = $self->call if (!@args || $self->priv < 9);
-
-foreach $call (@args) {
-       $call = uc $call;
-       my $user = DXUser->get_current($call);
-       if ($user) {
-               $user->wantpc90(1);
-               $user->put;
-               push @out, $self->msg('set', 'PC90', $call);
-       } else {
-               push @out, $self->msg('e3', "Set PC90", $call);
-       }
-}
-return (1, @out);