From 1485d51ca9b35325577fe8ce850323a4d18fc750 Mon Sep 17 00:00:00 2001 From: "nethack.rankin" Date: Fri, 14 Nov 2008 00:08:32 +0000 Subject: [PATCH] fix #H1745 - enlightenment about number of times killed From a bug report, code that always produced plural feedback (used only for values of N greater than 3) was unnecessarily handling plural vs singular. No change in game behavior; just one less function call in the code. --- src/end.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/end.c b/src/end.c index 6748a9dee..1635e4fde 100644 --- a/src/end.c +++ b/src/end.c @@ -1169,8 +1169,8 @@ boolean ask; switch (nkilled) { case 2: Sprintf(eos(buf)," (twice)"); break; case 3: Sprintf(eos(buf)," (thrice)"); break; - default: Sprintf(eos(buf)," (%d time%s)", - nkilled, plur(nkilled)); + default: Sprintf(eos(buf)," (%d times)", + nkilled); break; } }