1. Added talk mode so that I don't have to keep typing T <call> all the time.
[spider.git] / perl / DXProtout.pm
index 3d3a46bc1c01a46bb1ae3561dafd3d2cc242c888..8cc5137f59684c096eb79f4e6c8132becf723023 100644 (file)
@@ -27,8 +27,16 @@ use strict;
 sub pc10
 {
        my ($from, $to, $via, $text) = @_;
-       my $user2 = $via ? $to : ' ';
-       my $user1 = $via ? $via : $to;
+       my ($user1, $user2);
+       if ($via && $via ne $to) {
+               $user1 = $via;
+               $user2 = $to;
+       } else {
+               $user2 = ' ';
+               $user1 = $to;
+       }
+#      my $user2 = $via ? $to : ' ';
+#      my $user1 = $via ? $via : $to;
        $text = unpad($text);
        $text = ' ' if !$text;
        return "PC10^$from^$user1^$text^*^$user2^$main::mycall^~";