From bb99433b7ef538db9e918baef2f319d7b4009b38 Mon Sep 17 00:00:00 2001 From: backwardsEric Date: Sat, 7 Sep 2019 10:54:04 -0700 Subject: [PATCH] The English version of monster recall mentioned the character level twice when describing the expected experience. Removed the first to make the text clearer. --- src/monster1.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/monster1.c b/src/monster1.c index 408355d4..a3950a4c 100644 --- a/src/monster1.c +++ b/src/monster1.c @@ -667,9 +667,9 @@ 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", + hooked_roff(format(" is worth about %ld.%02ld point%s", (long)i, (long)j, - (((i == 1) && (j == 0)) ? "" : "s"), p_ptr->lev)); + (((i == 1) && (j == 0)) ? "" : "s"))); /* Take account of annoying English */ p = "th"; -- 2.20.1 (Apple Git-117)