From 663bb188daa31104ad08d2f1bf06b29e4fb1e021 Mon Sep 17 00:00:00 2001 From: nhmall Date: Tue, 31 Dec 2019 10:02:54 -0500 Subject: [PATCH] twoweapon message adjustment There was a concern that some things resulted in "is not a weapon" when trying to twoweapon, then were subsequently refered to in menus as "weapon in hand." Remove any perceived inconsistency by simply adjusting the first message. --- src/wield.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/wield.c b/src/wield.c index 6d0f5a7aa..219f65edc 100644 --- a/src/wield.c +++ b/src/wield.c @@ -673,7 +673,8 @@ can_twoweapon() else if (NOT_WEAPON(uwep) || NOT_WEAPON(uswapwep)) { otmp = NOT_WEAPON(uwep) ? uwep : uswapwep; pline("%s %s.", Yname2(otmp), - is_plural(otmp) ? "aren't weapons" : "isn't a weapon"); + is_plural(otmp) ? "aren't suitable weapons" + : "isn't a suitable weapon"); } else if (bimanual(uwep) || bimanual(uswapwep)) { otmp = bimanual(uwep) ? uwep : uswapwep; pline("%s isn't one-handed.", Yname2(otmp));