summaryrefslogtreecommitdiffstats
path: root/mbbsd/user.c
diff options
context:
space:
mode:
authorpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2008-03-31 16:47:43 +0800
committerpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2008-03-31 16:47:43 +0800
commit3c9cf494311ff493da233af3659a9b5966ee7e46 (patch)
treefc02d7907a06904deb3d0dc17e2828249b8ad3b1 /mbbsd/user.c
parente351b2ea5d4261e9730f4a8f341c80e60a56d69a (diff)
downloadpttbbs-3c9cf494311ff493da233af3659a9b5966ee7e46.tar
pttbbs-3c9cf494311ff493da233af3659a9b5966ee7e46.tar.gz
pttbbs-3c9cf494311ff493da233af3659a9b5966ee7e46.tar.bz2
pttbbs-3c9cf494311ff493da233af3659a9b5966ee7e46.tar.lz
pttbbs-3c9cf494311ff493da233af3659a9b5966ee7e46.tar.xz
pttbbs-3c9cf494311ff493da233af3659a9b5966ee7e46.tar.zst
pttbbs-3c9cf494311ff493da233af3659a9b5966ee7e46.zip
- drop angel_reject features (requested from okcool@ptt)
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@4050 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/user.c')
-rw-r--r--mbbsd/user.c30
1 files changed, 0 insertions, 30 deletions
diff --git a/mbbsd/user.c b/mbbsd/user.c
index 739ab1e4..6ed90b72 100644
--- a/mbbsd/user.c
+++ b/mbbsd/user.c
@@ -426,22 +426,6 @@ void Customize(void)
'1' + iax++,
"目前的心情",
mindbuf);
-#ifdef PLAY_ANGEL
- /* damn it, dirty stuff here */
- if( HasUserPerm(PERM_ANGEL) )
- {
- const char *am[4] =
- {"男女皆可", "限女生", "限男生", "暫不接受新的小主人"};
- prints("%c. %-40s%10s\n",
- '1' + iax++,
- "開放小主人詢問",
- (REJECT_QUESTION ? "否" : "是"));
- prints("%c. %-40s%10s\n",
- '1' + iax++,
- "接受的小主人性別",
- am[ANGEL_STATUS()]);
- }
-#endif
}
/* input */
@@ -498,20 +482,6 @@ void Customize(void)
}
continue;
}
-#ifdef PLAY_ANGEL
- if( HasUserPerm(PERM_ANGEL) ){
- if (key == iax-2)
- {
- SwitchBeingAngel();
- dirty = 1; continue;
- }
- else if (key == iax-1)
- {
- SwitchAngelSex(ANGEL_STATUS() + 1);
- dirty = 1; continue;
- }
- }
-#endif
}