X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fshow%2Ftalk.pl;h=81d6dc06b18a50d7abda3a9441785f3b9af98811;hb=96461da2f857d65129b2e6acd19bd075984c31f1;hp=f30d95ec57e9676e29f87cfdb772d242b70fe82e;hpb=69c8aeb338cc485103e289fbab7ec4e7e056ed20;p=spider.git diff --git a/cmd/show/talk.pl b/cmd/show/talk.pl index f30d95ec..81d6dc06 100644 --- a/cmd/show/talk.pl +++ b/cmd/show/talk.pl @@ -7,8 +7,6 @@ # my $self = shift; -return (1, $self->msg('e5')) if $self->priv < 9; - my $cmdline = shift; my @f = split /\s+/, $cmdline; my $f; @@ -32,6 +30,10 @@ while ($f = shift @f) { # next field $to = 20 unless $to; $from = 0 unless $from; +if ($self->priv < 6) { + $who = $self->call unless $who; + return (1, $self->msg('e5')) if $who ne $self->call; +} -@out = DXLog::print($from, $to, $main::systime, '^talk', $who); +@out = DXLog::print($from, $to, $main::systime, 'talk', $who); return (1, @out);