diff options
-rw-r--r-- | mbbsd/user.c | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/mbbsd/user.c b/mbbsd/user.c index 626761d5..85e0130f 100644 --- a/mbbsd/user.c +++ b/mbbsd/user.c @@ -713,19 +713,31 @@ uinfo_query(userec_t *u, int adminmode, int unum) } #ifdef PLAY_ANGEL - if (adminmode) + if (adminmode) { + const char* prompt; + userec_t the_angel; + if (x.myangel[0] == 0 || x.myangel[0] == '-' || + (getuser(x.myangel, &the_angel) && + the_angel.userlevel & PERM_ANGEL)) + prompt = "�p�ѨϡG"; + else + prompt = "�p�Ѩϡ]���b���w�L�p�Ѩϸ��^�G"; while (1) { userec_t xuser; - getdata_str(i, 0, "�p�ѨϡG", buf, IDLEN + 1, DOECHO, + getdata_str(i, 0, prompt, buf, IDLEN + 1, DOECHO, x.myangel); if(buf[0] == 0 || strcmp(buf, "-") == 0 || (getuser(buf, &xuser) && - (xuser.userlevel & PERM_ANGEL))){ + (xuser.userlevel & PERM_ANGEL)) || + strcmp(x.myangel, buf) == 0){ strlcpy(x.myangel, xuser.userid, IDLEN + 1); ++i; break; } + + prompt = "�p�ѨϡG"; } + } #endif #ifdef CHESSCOUNTRY |