move ganerated stuff to local_data
[spider.git] / cmd / bye.pl
index 653e939407a4067141f4da5bad97e11074af859a..513b3055af6fa4bca41f5b1d8bddef23de27f874 100644 (file)
@@ -1,14 +1,15 @@
 #
 # the bye command
 #
-# $Id$
+#
 #
 
 my $self = shift;
+return (1, $self->msg('e5')) if $self->inscript;
 
 # log out text
-if ($self->is_user && -e "$main::data/logout") {
-       open(I, "$main::data/logout") or confess;
+if ($self->is_user && -e localdata("logout")) {
+       open(I, localdata("logout")) or confess;
        my @in = <I>;
        close(I);
        $self->send_now('D', @in);