From 3a25afdb0171440ca1574301284b584f4c285e1d Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Sun, 13 Dec 2015 22:28:00 -0800 Subject: [PATCH] Minor textual correct for factlog disambig text --- PBot/FactoidCommands.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PBot/FactoidCommands.pm b/PBot/FactoidCommands.pm index 00373772..27fb5285 100644 --- a/PBot/FactoidCommands.pm +++ b/PBot/FactoidCommands.pm @@ -728,7 +728,7 @@ sub factlog { if (@factoids > 1) { if ($needs_disambig or not grep { $_->[0] eq $chan } @factoids) { - return "$trig found in multiple channels: " . (join ', ', sort map { $_->[0] eq '.*' ? 'global' : $_->[0] } @factoids) . "; use `factinfo $trig` to disambiguate."; + return "$trig found in multiple channels: " . (join ', ', sort map { $_->[0] eq '.*' ? 'global' : $_->[0] } @factoids) . "; use `factlog $trig` to disambiguate."; } else { foreach my $factoid (@factoids) { if ($factoid->[0] eq $chan) {