]> git.donarmstrong.com Git - infobot.git/blobdiff - src/Process.pl
"~forget blah" now works. thanks to ElectricElf
[infobot.git] / src / Process.pl
index 55da57b038e49fa11aaf82d4a02bdfffb445e835..1862e7a61040812f35ac91d38ec6705d3ad03735 100644 (file)
@@ -63,8 +63,8 @@ sub process {
            }
 
            if (&validChan($thischan)) {
-               &msg($who,"I'm already on $thischan...");
-               return;
+               &msg($who,"warn: I'm already on $thischan, joining  anyway...");
+#              return;
            }
        }
        $cache{join}{$thischan} = $who; # used for on_join self.
@@ -188,11 +188,11 @@ sub process {
 
     # override msgType.
     if ($msgType =~ /public/ and $message =~ s/^\+//) {
-       &status("found '+' flag; setting msgType to public.");
-       $force_public_reply++;
+       &status("Process: '+' flag detected; changing reply to public");
        $msgType = 'public';
        $who     = $chan;       # major hack to fix &msg().
-       &DEBUG("addressed => $addressed.");
+       $force_public_reply++;
+       # notice is still NOTICE but to whole channel => good.
     }
 
     # User Processing, for all users.
@@ -263,7 +263,7 @@ sub process {
     if ($message =~ /^than(ks?|x)( you)?( \S+)?/i) {
        return 'thank: no addr' unless ($message =~ /$ident/ or $talkok);
 
-       &performReply( &getRandom(keys %{$lang{'welcome'}}) );
+       &performReply( &getRandom(keys %{ $lang{'welcome'} }) );
        return;
     }
 
@@ -316,12 +316,9 @@ sub process {
            return 'SOMETHING 1';
        }
 
-       ### FIXME: should this only apply to public messages?
-       if ($addrchar) {
-           &DEBUG("floodwho => '$floodwho'.");
-           delete $flood{$floodwho}{$message};
-           &status("short return due to unknown command.");
-           return 'ADDR CHAR';
+       if (0 and $addrchar) {
+           &msg($who, "I don't trust people to use the core commands while addressing me in a short-cut way.");
+           return;
        }
     }
 
@@ -411,10 +408,10 @@ sub FactoidStuff {
                my $check = &getFactoid("$faqtoid #DEL#");
                if (!$check) {
                    if ($faqtoid !~ /#DEL#/) {
-                       &setFactInfo($faqtoid, "factoid_key", $faqtoid." #DEL#");
-
-                       &setFactInfo($faqtoid, "modified_by", $who);
-                       &setFactInfo($faqtoid, "modified_time", time());
+                       my $new = $faqtoid." #DEL#";
+                       &setFactInfo($faqtoid, "factoid_key", $new);
+                       &setFactInfo($new, "modified_by", $who);
+                       &setFactInfo($new, "modified_time", time());
                    } else {
                        &status("not backing up $faqtoid.");
                    }
@@ -591,6 +588,7 @@ sub FactoidStuff {
     for ($question) {
        # fix the string.
        s/^hey([, ]+)where/where/i;
+       s/\s+\?$/?/;
        s/whois/who is/ig;
        s/where can i find/where is/i;
        s/how about/where is/i;
@@ -633,6 +631,7 @@ sub FactoidStuff {
        my $newresult = &perlMath();
 
        if (defined $newresult and $newresult ne "") {
+           $cmdstats{'Maths'}++;
            $result = $newresult;
            &status("math: <$who> $message => $result");
        }
@@ -657,13 +656,13 @@ sub FactoidStuff {
 
     if (length $message > 64) {
        &status("unparseable-moron: $message");
-       &performReply( &getRandom(keys %{$lang{'moron'}}) );
+       &performReply( &getRandom(keys %{ $lang{'moron'} }) );
        $count{'Moron'}++;
        return;
     }
 
     &status("unparseable: $message");
-    &performReply( &getRandom(keys %{$lang{'dunno'}}) );
+    &performReply( &getRandom(keys %{ $lang{'dunno'} }) );
     $count{'Dunno'}++;
 }