From 47687f9e4f4571321450eadc9f3a398b8a87b609 Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Wed, 5 Feb 2020 01:21:00 -0800 Subject: [PATCH] Interpreter: remove unnecessary slash --- PBot/Interpreter.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PBot/Interpreter.pm b/PBot/Interpreter.pm index 2e622493..e46c963b 100644 --- a/PBot/Interpreter.pm +++ b/PBot/Interpreter.pm @@ -931,7 +931,7 @@ sub output_result { my $line = $stuff->{line}; return if not defined $line or not length $line; - return 0 if $stuff->{from} eq 'stdin\@pbot'; + return 0 if $stuff->{from} eq 'stdin@pbot'; if ($line =~ s/^\/say\s+//i) { if (defined $stuff->{nickoverride} and ($stuff->{no_nickoverride} == 0 or $stuff->{force_nickoverride} == 1)) {