Show "two" instead of "a few" when autopicking up objects, and
there's some left you didn't pick up.
There("is %s object here.", picked_some ? "another" : "an");
else
There("are %s%s objects here.",
- (obj_cnt < 5)
- ? "a few"
- : (obj_cnt < 10)
- ? "several"
- : "many",
+ (obj_cnt == 2) ? "two"
+ : (obj_cnt < 5) ? "a few"
+ : (obj_cnt < 10) ? "several"
+ : "many",
picked_some ? " more" : "");
for (; otmp; otmp = otmp->nexthere)
if (otmp->otyp == CORPSE && will_feel_cockatrice(otmp, FALSE)) {