From: nethack.allison Date: Tue, 28 Jan 2003 03:00:43 +0000 (+0000) Subject: fix B18001 strange pluralization X-Git-Tag: MOVE2GIT~2217 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ca01abe4fe15811b02740901a489d1c3923d588e;p=nethack fix B18001 strange pluralization --- diff --git a/src/do_wear.c b/src/do_wear.c index 620b90107..a5738fef2 100644 --- a/src/do_wear.c +++ b/src/do_wear.c @@ -1539,7 +1539,8 @@ glibr() /* changed so cursed rings don't fall off, GAN 10/30/86 */ Your("%s off your %s.", (leftfall && rightfall) ? "rings slip" : "ring slips", - makeplural(body_part(FINGER))); + (leftfall && rightfall) ? makeplural(body_part(FINGER)) : + body_part(FINGER)); xfl++; if (leftfall) { otmp = uleft;