From 19f0644966fc87841c49e2f0e4a3456a9735a564 Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Thu, 24 Jun 2021 19:31:08 -0700 Subject: [PATCH] StdinReader: restore `from` to pbot@stdin --- PBot/StdinReader.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PBot/StdinReader.pm b/PBot/StdinReader.pm index c4c223d1..7b46d8eb 100644 --- a/PBot/StdinReader.pm +++ b/PBot/StdinReader.pm @@ -67,7 +67,7 @@ sub stdin_reader { my $botnick = $self->{pbot}->{registry}->get_value('irc', 'botnick'); # process input as a bot command - return $self->{pbot}->{interpreter}->process_line($botnick, $botnick, "stdin", "pbot", $input, 1); + return $self->{pbot}->{interpreter}->process_line('stdin@pbot', $botnick, "stdin", "pbot", $input, 1); } 1;