Skip to content

Commit

Permalink
role
Browse files Browse the repository at this point in the history
  • Loading branch information
argrath committed Jul 23, 2024
1 parent e7d84a6 commit cb7be2d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/role.c
Original file line number Diff line number Diff line change
Expand Up @@ -2682,19 +2682,19 @@ Hello(struct monst *mtmp)

switch (Role_switch) {
case PM_KNIGHT:
Sprintf(helo_buf, "よくぞ参った%sよ", gp.plname);
Sprintf(helo_buf, "よくぞ参った%sよ", svp.plname);
break;
case PM_SAMURAI:
Sprintf(helo_buf, "よくぞ参られた%sよ", gp.plname);
Sprintf(helo_buf, "よくぞ参られた%sよ", svp.plname);
break;
case PM_TOURIST:
Sprintf(helo_buf, "アローハ%s", gp.plname);
Sprintf(helo_buf, "アローハ%s", svp.plname);
break;
case PM_VALKYRIE:
Sprintf(helo_buf, "魂の守護者%sよ", gp.plname);
Sprintf(helo_buf, "魂の守護者%sよ", svp.plname);
break;
default:
Sprintf(helo_buf, "ようこそ%s", gp.plname);
Sprintf(helo_buf, "ようこそ%s", svp.plname);
break;
}

Expand Down Expand Up @@ -3461,7 +3461,7 @@ plsel_startmenu(int ttyrows, int aspect)
rolename);
#else
Sprintf(qbuf, "%.20s, %.20s%.20sの%.20s%.20s",
gp.plname,
svp.plname,
aligns[ALGN].adj,
genders[GEND].adj,
races[RACE].adj,
Expand Down

0 comments on commit cb7be2d

Please sign in to comment.