From: dms Date: Mon, 2 Oct 2000 17:12:10 +0000 (+0000) Subject: fixed - typo for join() X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=0e3b960326d20e1a9d00a131cfb28df88f4485bc;p=infobot.git fixed - typo for join() git-svn-id: https://svn.code.sf.net/p/infobot/code/trunk@147 c11ca15a-4712-0410-83d8-924469b57eb5 --- diff --git a/blootbot/src/IRC/IrcHooks.pl b/blootbot/src/IRC/IrcHooks.pl index deff4f3..b7126b4 100644 --- a/blootbot/src/IRC/IrcHooks.pl +++ b/blootbot/src/IRC/IrcHooks.pl @@ -45,6 +45,7 @@ sub on_chat { if (!exists $nuh{lc $nick}) { &DEBUG("chat: nuh{$nick} doesn't exist; hrm should retry."); + &msg($nick, "could not get whois info?"); return; } else { $message = $msg; @@ -856,7 +857,8 @@ sub hookMsg { push(@who, grep /^\Q$message\E$/i, keys %{$flood{$_}}); } if (scalar @who) { - &msg($who, "you already said what ".join(@who)." have said."); + &msg($who, "you already said what ". + join(' ', @who)." have said."); } else { &msg($who,"Someone already said that ". (time - $time) ." seconds ago" ); }