diff options
Diffstat (limited to 'mbbsd')
-rw-r--r-- | mbbsd/mbbsd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mbbsd/mbbsd.c b/mbbsd/mbbsd.c index cc8afba3..92377e37 100644 --- a/mbbsd/mbbsd.c +++ b/mbbsd/mbbsd.c @@ -819,7 +819,8 @@ setup_utmp(int mode) if (!(cuser.numlogins % 20) && cuser.userlevel & PERM_BM) check_BM(); /* Ptt 自動取下離職板主權力 */ #ifndef _BBS_UTIL_C_ - friend_load(0); + if( strcmp(cuser.userid, STR_GUEST) != 0 ) // guest 不處理好友 + friend_load(0); nice(3); #endif } |