From: timriker Date: Fri, 18 Feb 2005 09:06:28 +0000 (+0000) Subject: Uptime is a param, warn if chan flags are in config X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=f703ae0fdbba6ad195371b52210f3d636dd43f39;p=infobot.git Uptime is a param, warn if chan flags are in config git-svn-id: https://svn.code.sf.net/p/infobot/code/trunk/blootbot@1156 c11ca15a-4712-0410-83d8-924469b57eb5 --- diff --git a/src/core.pl b/src/core.pl index 20a85c3..309683d 100644 --- a/src/core.pl +++ b/src/core.pl @@ -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; }