diff options
author | scw <scw@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2004-05-15 20:30:41 +0800 |
---|---|---|
committer | scw <scw@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2004-05-15 20:30:41 +0800 |
commit | 567095c98731c804dab1c64cac7809aec1cc51d8 (patch) | |
tree | 6f117a5470d8467b12dc030a131c21071815a377 /mbbsd/user.c | |
parent | a8b87ec695abd673d76c148985b0f255d7083ae5 (diff) | |
download | pttbbs-567095c98731c804dab1c64cac7809aec1cc51d8.tar pttbbs-567095c98731c804dab1c64cac7809aec1cc51d8.tar.gz pttbbs-567095c98731c804dab1c64cac7809aec1cc51d8.tar.bz2 pttbbs-567095c98731c804dab1c64cac7809aec1cc51d8.tar.lz pttbbs-567095c98731c804dab1c64cac7809aec1cc51d8.tar.xz pttbbs-567095c98731c804dab1c64cac7809aec1cc51d8.tar.zst pttbbs-567095c98731c804dab1c64cac7809aec1cc51d8.zip |
First throughing and replying done.
git-svn-id: http://opensvn.csie.org/pttbbs/branches/scw.angel@1987 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/user.c')
-rw-r--r-- | mbbsd/user.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mbbsd/user.c b/mbbsd/user.c index a4ca8e02..55cb1ceb 100644 --- a/mbbsd/user.c +++ b/mbbsd/user.c @@ -244,10 +244,9 @@ static void Customize(void) getdata(b_lines - 1, 0, "請按 [A-F] 切換設定,按 [Return] 結束:", ans, 3, DOECHO); }else -#else +#endif getdata(b_lines - 1, 0, "請按 [A-E] 切換設定,按 [Return] 結束:", ans, 3, DOECHO); -#endif switch( ans[0] ){ case 'A': @@ -286,11 +285,13 @@ static void Customize(void) case 'e': cuser.uflag2 ^= FAVNOHILIGHT; break; + #ifdef PLAY_ANGEL case 'F': case 'f': if( HAS_PERM(PERM_ANGEL) ){ cuser.uflag2 ^= BEING_ANGEL; + currutmp->being_angel ^= 1; break; } #endif |