summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mbbsd/admin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mbbsd/admin.c b/mbbsd/admin.c
index b4221b75..74efe5a5 100644
--- a/mbbsd/admin.c
+++ b/mbbsd/admin.c
@@ -564,7 +564,7 @@ m_mod_board(char *bname)
#ifdef CHESSCOUNTRY
if (HasUserPerm(PERM_SYSOP)) {
snprintf(genbuf, sizeof(genbuf), "%d", bh.chesscountry);
- if (getdata_str(16, 0, "設定棋國 (0)無 (1)五子棋 (2)象棋 (3) 圍棋", ans,
+ if (getdata_str(16, 0, "設定棋國 (0)無 (1)五子棋 (2)象棋 (3)圍棋", ans,
sizeof(ans), LCECHO, genbuf)){
newbh.chesscountry = atoi(ans);
if (newbh.chesscountry > CHESSCODE_MAX ||
@@ -878,7 +878,7 @@ m_newbrd(int whatclass, int recover)
newboard.level = 0;
getdata(11, 0, "板主名單:", newboard.BM, sizeof(newboard.BM), DOECHO);
#ifdef CHESSCOUNTRY
- if (getdata_str(12, 0, "設定棋國 (0)無 (1)五子棋 (2)象棋", ans,
+ if (getdata_str(12, 0, "設定棋國 (0)無 (1)五子棋 (2)象棋 (3)圍棋", ans,
sizeof(ans), LCECHO, "0")){
newboard.chesscountry = atoi(ans);
if (newboard.chesscountry > CHESSCODE_MAX ||