From: deskull Date: Sat, 14 Dec 2019 14:08:30 +0000 (+0900) Subject: [Fix] #39556 英語版でモンスターの思い出表記が2度になっている問題を修正. / Fix player level twice mentions of... X-Git-Tag: vmacos3.0.0-alpha52~2384 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=6ace1ae917ecd96910d93b2277a1da2a2c201016;p=hengbandforosx%2Fhengbandosx.git [Fix] #39556 英語版でモンスターの思い出表記が2度になっている問題を修正. / Fix player level twice mentions of monster lore on English. --- diff --git a/src/monster1.c b/src/monster1.c index 7639ba1aa..dbb447eec 100644 --- a/src/monster1.c +++ b/src/monster1.c @@ -664,8 +664,8 @@ static void roff_aux(MONRACE_IDX r_idx, BIT_FLAGS mode) #else /* Mention the experience */ - hooked_roff(format(" is worth about %ld.%02ld point%s for level %d player", - (long)i, (long)j, ((i == 1) && (j == 0)) ? "" : "s" , p_ptr->lev)); + hooked_roff(format(" is worth about %ld.%02ld point%s", + (long)i, (long)j, ((i == 1) && (j == 0)) ? "" : "s")); /* Take account of annoying English */ p = "th";