From 2895d27cf52dc86f72db513fa088f6153de4525e Mon Sep 17 00:00:00 2001 From: "nethack.allison" Date: Tue, 21 Jan 2003 13:06:41 +0000 Subject: [PATCH] fix a shade grammar bit --- src/uhitm.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/uhitm.c b/src/uhitm.c index 442233c8b..3ed1961f2 100644 --- a/src/uhitm.c +++ b/src/uhitm.c @@ -909,8 +909,9 @@ int thrown; tmp = 0; if (mdat == &mons[PM_SHADE]) { if (!hittxt) { - Your("%s passes harmlessly through %s.", - unconventional[0] ? unconventional : "attack", + char *what = unconventional[0] ? unconventional : "attack"; + Your("%s %s harmlessly through %s.", + what, vtense(what, "pass"), mon_nam(mon)); hittxt = TRUE; } -- 2.40.0