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.
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;
}
}