diff options
-rw-r--r-- | mbbsd/edit.c | 6 | ||||
-rw-r--r-- | mbbsd/syspost.c | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/mbbsd/edit.c b/mbbsd/edit.c index 8abf2f19..390901b0 100644 --- a/mbbsd/edit.c +++ b/mbbsd/edit.c @@ -1783,10 +1783,10 @@ vedit(char *fpath, int saveheader, int *islocal) last = (char)ch; } } - if (interval && interval == tin) - { + if (interval && (interval > tin-2) && (interval < tin+2)) + { // Ptt : +- 1 秒也算 count++; - if(count>500) + if(count>60) { log_file("etc/illegal_money", LOG_CREAT | LOG_VF, "\033[1;33;46m%s \033[37;45m 用機器人發表文章 \033[37m %s\033[m\n", diff --git a/mbbsd/syspost.c b/mbbsd/syspost.c index 284e5fb4..033ddb2e 100644 --- a/mbbsd/syspost.c +++ b/mbbsd/syspost.c @@ -134,7 +134,7 @@ post_violatelaw(char *crime, char *police, char *reason, char *result) crime, ctime(&now), police, crime, reason, result); fclose(fp); snprintf(fhdr.title, sizeof(fhdr.title), - "[報告] %-20s 違法判決報告", crime); + "[報告] %s: %s 判決報告", reason, crime); strlcpy(fhdr.owner, "[Ptt法院]", sizeof(fhdr.owner)); append_record("boards/V/ViolateLaw/.DIR", &fhdr, sizeof(fhdr)); |