diff options
author | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2013-09-16 18:44:35 +0800 |
---|---|---|
committer | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2013-09-16 18:44:35 +0800 |
commit | acb862e1eefecd49213b8a635f584b5e4446591e (patch) | |
tree | 0140dece6a7f7b82835203f0c88f43c6bb33289f | |
parent | 3812b85165b7faad95087b2a9fa155735d21622a (diff) | |
download | pttbbs-acb862e1eefecd49213b8a635f584b5e4446591e.tar pttbbs-acb862e1eefecd49213b8a635f584b5e4446591e.tar.gz pttbbs-acb862e1eefecd49213b8a635f584b5e4446591e.tar.bz2 pttbbs-acb862e1eefecd49213b8a635f584b5e4446591e.tar.lz pttbbs-acb862e1eefecd49213b8a635f584b5e4446591e.tar.xz pttbbs-acb862e1eefecd49213b8a635f584b5e4446591e.tar.zst pttbbs-acb862e1eefecd49213b8a635f584b5e4446591e.zip |
Also change the inactive time in mbbsd
git-svn-id: http://opensvn.csie.org/pttbbs/trunk@5873 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | pttbbs/mbbsd/angel.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pttbbs/mbbsd/angel.c b/pttbbs/mbbsd/angel.c index 3cd40d62..33a8d08c 100644 --- a/pttbbs/mbbsd/angel.c +++ b/pttbbs/mbbsd/angel.c @@ -16,7 +16,7 @@ #define FN_ANGEL_OFFLINE2 "etc/angel_offline2" #ifndef ANGEL_INACTIVE_DAYS -#define ANGEL_INACTIVE_DAYS (30*3) +#define ANGEL_INACTIVE_DAYS (180) #endif static const char @@ -514,7 +514,7 @@ int a_angelreport() { rpt.total_active_angels); if (!rpt.inactive_days) - rpt.inactive_days = 120; + rpt.inactive_days = ANGEL_INACTIVE_DAYS; prints( "\t 上線天使中,擁有活躍小主人數目最少為 %d 位,最多為 %d 位\n" |