OSDN Git Service

[Fix] #39556 英語版でモンスターの思い出表記が2度になっている問題を修正. / Fix player level twice mentions of...
authordeskull <deskull@users.sourceforge.jp>
Sat, 14 Dec 2019 14:08:30 +0000 (23:08 +0900)
committerdeskull <deskull@users.sourceforge.jp>
Sat, 14 Dec 2019 14:08:30 +0000 (23:08 +0900)
src/monster1.c

index 7639ba1..dbb447e 100644 (file)
@@ -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";