From: dms Date: Mon, 18 Sep 2000 11:30:37 +0000 (+0000) Subject: removed feedback addressing. Issue raised by Flugh X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=b2687037076800d4d89e83026aded05dc9229ba6;p=infobot.git removed feedback addressing. Issue raised by Flugh git-svn-id: https://svn.code.sf.net/p/infobot/code/trunk@108 c11ca15a-4712-0410-83d8-924469b57eb5 --- diff --git a/blootbot/src/Process.pl b/blootbot/src/Process.pl index 1e1cbbf..08dcc57 100644 --- a/blootbot/src/Process.pl +++ b/blootbot/src/Process.pl @@ -104,15 +104,6 @@ sub process { # once useless messages have been parsed out, we match them. ### - # addressed. - if ($message =~ /^\Q$ident\E\s*\?*$/i) { - &status("feedback addressing from $who"); - - &performReply("yes?"); - - return; - } - # confused? is this for infobot communications? foreach (keys %{$lang{'confused'}}) { my $y = $_; @@ -216,6 +207,7 @@ sub process { # here's where the external routines get called. # if they return anything but null, that's the "answer". if ($addressed) { + &parseCmdHook(); my $er = &Modules(); if ($er =~ /\S/) { &performStrictReply($er) if ($er ne $noreply);