git-svn-id: https://svn.code.sf.net/p/infobot/code/trunk/blootbot@1147
c11ca15a-4712-0410-83d8-
924469b57eb5
+2005-02-18 00:00 timriker
+
+ * src/Factoids/Question.pl: minVolunteerLength now per channel
* src/core.pl: getChanConf checks _default too
* src/: "s/hasParam/IsChanConfOrWarn/"
* src/: add handling for channel specific factoids:
if (!$addressed) {
return '' unless ($finalQMark);
- return '' if (&IsParam("minVolunteerLength") == 0);
- return '' if (length $query < $param{'minVolunteerLength'});
+ return '' unless &IsChanConf("minVolunteerLength");
+ return '' if (length $query < &::getChanConf('minVolunteerLength'));
} else {
### TODO: this should be caught in Process.pl?
return '' unless ($talkok);