From 84d5fec90a21118c556d22b8b36b02c93bc829f1 Mon Sep 17 00:00:00 2001 From: djk Date: Mon, 30 Nov 1998 15:28:31 +0000 Subject: [PATCH] allow talks to mycall to go to myalias instead --- perl/DXProt.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/perl/DXProt.pm b/perl/DXProt.pm index 58dfd497..b8b9b892 100644 --- a/perl/DXProt.pm +++ b/perl/DXProt.pm @@ -104,9 +104,10 @@ sub normal # yes, it is my $text = unpad($field[3]); + Log('talk', $call, $field[1], $field[6], $text); + $call = $main::myalias if $call eq $main::mycall; my $ref = DXChannel->get($call); $ref->send("$call de $field[1]: $text") if $ref; - Log('talk', $call, $field[1], $field[6], $text); } else { route($field[2], $line); # relay it on its way } -- 2.34.1