From 93b444e3f55cd643e25b27bb35266312d765dec7 Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Sat, 18 Jul 2020 12:52:47 -0700 Subject: [PATCH] Factoids: whoops, missed a character --- PBot/Factoids.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PBot/Factoids.pm b/PBot/Factoids.pm index cf8e99cd..a406b38c 100644 --- a/PBot/Factoids.pm +++ b/PBot/Factoids.pm @@ -793,7 +793,7 @@ sub expand_factoid_vars { $matches++; # extract channel expansion modifier - if ($rest =~ s/^:*(#[^:]+|global)//i) { + if ($rest =~ s/^:(#[^:]+|global)//i) { $from = $1; $from = '.*' if lc $from eq 'global'; }