From 32fa807050335df367aaac42292225f94ce52955 Mon Sep 17 00:00:00 2001 From: Pasi Kallinen Date: Mon, 11 Apr 2022 11:31:28 +0300 Subject: [PATCH] When autopicking objects, you can count to two Show "two" instead of "a few" when autopicking up objects, and there's some left you didn't pick up. --- src/invent.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/invent.c b/src/invent.c index 447fb3ba6..be8fb8d73 100644 --- a/src/invent.c +++ b/src/invent.c @@ -3939,11 +3939,10 @@ look_here(int obj_cnt, /* obj_cnt > 0 implies that autopickup is in progress */ 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)) {