marilith thrusts

<Someone> reported:
>> The marilith wields 5 daggers!
>> The marilith thrusts her dagger.  The marilith misses.
> Shouldn't she thrust her daggerS?

Change to:
"The marilith thrusts one of her daggers." in that case.
This commit is contained in:
nethack.allison
2004-06-05 13:38:15 +00:00
parent 7de00a45be
commit 39d3249ed8
2 changed files with 5 additions and 2 deletions

View File

@@ -102,9 +102,10 @@ register struct obj *otemp;
{
if (!flags.verbose || Blind || !mon_visible(mtmp))
return;
pline("%s %s %s %s.", Monnam(mtmp),
pline("%s %s %s%s %s.", Monnam(mtmp),
(objects[otemp->otyp].oc_dir & PIERCE) ? "thrusts" : "swings",
mhis(mtmp), singular(otemp, xname));
(otemp->quan > 1) ? "one of " : "",
mhis(mtmp), xname(otemp));
}
/* return how a poison attack was delivered */