diff options
author | ptt <ptt@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2004-03-31 11:53:47 +0800 |
---|---|---|
committer | ptt <ptt@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2004-03-31 11:53:47 +0800 |
commit | f0cb1b8229878195c269dc682f72d34498bd57d3 (patch) | |
tree | 59060eac51ed3c10e09310b46b3a5639af262615 | |
parent | 1302ba597718473328623b0d45c911c08e9e00f3 (diff) | |
download | pttbbs-f0cb1b8229878195c269dc682f72d34498bd57d3.tar pttbbs-f0cb1b8229878195c269dc682f72d34498bd57d3.tar.gz pttbbs-f0cb1b8229878195c269dc682f72d34498bd57d3.tar.bz2 pttbbs-f0cb1b8229878195c269dc682f72d34498bd57d3.tar.lz pttbbs-f0cb1b8229878195c269dc682f72d34498bd57d3.tar.xz pttbbs-f0cb1b8229878195c269dc682f72d34498bd57d3.tar.zst pttbbs-f0cb1b8229878195c269dc682f72d34498bd57d3.zip |
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@1651 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | mbbsd/cal.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mbbsd/cal.c b/mbbsd/cal.c index a87dcb42..462818de 100644 --- a/mbbsd/cal.c +++ b/mbbsd/cal.c @@ -269,7 +269,7 @@ p_cloak() if (buf[0] != 'y') return 0; if (cuser->money >= 19) { - vice(19, "cloak"); + vice(19, "付費隱身"); currutmp->invisible %= 2; outs((currutmp->invisible ^= 1) ? MSG_CLOAKED : MSG_UNCLOAK); refresh(); @@ -292,7 +292,7 @@ p_from() return 0; if (getdata_buf(b_lines - 1, 0, "請輸入新故鄉:", currutmp->from, sizeof(currutmp->from), DOECHO)) { - vice(49, "home"); + vice(49, "更改故鄉"); currutmp->from_alias = 0; } return 0; @@ -324,7 +324,7 @@ p_exmail() reload_money(); if (cuser->money < n * 1000) return 0; - vice(n * 1000, "mail"); + vice(n * 1000, "購買信箱"); inmailbox(n); return 0; } |