fix B18001 strange pluralization

This commit is contained in:
nethack.allison
2003-01-28 03:00:43 +00:00
parent b36e0e45bf
commit ca01abe4fe
+2 -1
View File
@@ -1539,7 +1539,8 @@ glibr()
/* changed so cursed rings don't fall off, GAN 10/30/86 */ /* changed so cursed rings don't fall off, GAN 10/30/86 */
Your("%s off your %s.", Your("%s off your %s.",
(leftfall && rightfall) ? "rings slip" : "ring slips", (leftfall && rightfall) ? "rings slip" : "ring slips",
makeplural(body_part(FINGER))); (leftfall && rightfall) ? makeplural(body_part(FINGER)) :
body_part(FINGER));
xfl++; xfl++;
if (leftfall) { if (leftfall) {
otmp = uleft; otmp = uleft;