]> git.donarmstrong.com Git - infobot.git/commitdiff
Uptime is a param, warn if chan flags are in config
authortimriker <timriker@c11ca15a-4712-0410-83d8-924469b57eb5>
Fri, 18 Feb 2005 09:06:28 +0000 (09:06 +0000)
committertimriker <timriker@c11ca15a-4712-0410-83d8-924469b57eb5>
Fri, 18 Feb 2005 09:06:28 +0000 (09:06 +0000)
git-svn-id: https://svn.code.sf.net/p/infobot/code/trunk/blootbot@1156 c11ca15a-4712-0410-83d8-924469b57eb5

src/core.pl

index 20a85c3e27656e7599d6750e3cc8d7601bd77b66..309683d393de1e50b1df898c798d194c78e02235 100644 (file)
@@ -127,7 +127,7 @@ sub doExit {
        }
        &writeUserFile();
        &writeChanFile();
-       &uptimeWriteFile()      if (&IsChanConf('Uptime'));
+       &uptimeWriteFile()      if (&IsParam('Uptime'));
        &sqlCloseDB();
        &closeSHM($shm);
 
@@ -229,10 +229,10 @@ sub IsChanConf {
        return 0;
     }
 
-    # should we use IsParam() externally where needed or hack it in
-    # here just in case? fix it later.
+    # these should get moved to your .chan file instead of the .config
+    # .config items overide any .chan entries
     if (&IsParam($param)) {
-       &DEBUG("ICC: found '$param' option in main config file.");
+       &WARN("ICC: found '$param' option in main config file.");
        return 1;
     }