From bbcd161e5ffd586c92cc76b4e24089ee81b85e26 Mon Sep 17 00:00:00 2001 From: nhmall Date: Sun, 10 Nov 2024 10:19:58 -0500 Subject: [PATCH] follow-up: prompt message bit --- src/do.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/do.c b/src/do.c index 2fcf6bd40..b3feccec2 100644 --- a/src/do.c +++ b/src/do.c @@ -947,8 +947,8 @@ better_not_try_to_drop_that(struct obj *otmp) if (otmp->otyp == CORPSE && !u_safe_from_fatal_corpse(otmp, st_all)) { Snprintf( buf, sizeof buf, - "Drop the %s corpse without any protection while handling it?", - obj_pmname(otmp)); + "Drop the %s corpse without %s protection on?", + obj_pmname(otmp), body_part(HAND)); return (paranoid_ynq(TRUE, buf, FALSE) != 'y'); } return FALSE;