]> git.donarmstrong.com Git - infobot.git/commitdiff
removed feedback addressing. Issue raised by Flugh
authordms <dms@c11ca15a-4712-0410-83d8-924469b57eb5>
Mon, 18 Sep 2000 11:30:37 +0000 (11:30 +0000)
committerdms <dms@c11ca15a-4712-0410-83d8-924469b57eb5>
Mon, 18 Sep 2000 11:30:37 +0000 (11:30 +0000)
git-svn-id: https://svn.code.sf.net/p/infobot/code/trunk/blootbot@108 c11ca15a-4712-0410-83d8-924469b57eb5

src/Process.pl

index 1e1cbbfb3a6e19e7d7c9d5a7e4d4581511559299..08dcc579019f7fe7375eb2326b9b52dfab76595d 100644 (file)
@@ -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);