diff -U 3 -r nethack-3.4.3/src/artifact.c nethack-3.4.3-c162/src/artifact.c --- nethack-3.4.3/src/artifact.c 2003-12-07 18:39:13.000000000 -0500 +++ nethack-3.4.3-c162/src/artifact.c 2013-03-16 10:00:14.647169849 -0400 @@ -905,7 +905,7 @@ if (youattack || youdefend || vis) { (void) upstart(hittee); /* capitalize */ if (resisted) { - pline("%s %s!", hittee, vtense(hittee, "resist")); + pline("%s resist%s!", hittee, youdefend ? "" : "s"); shieldeff(youdefend ? u.ux : mdef->mx, youdefend ? u.uy : mdef->my); } @@ -916,7 +916,7 @@ if (do_stun) Strcat(buf, "stunned"); if (do_stun && do_confuse) Strcat(buf, " and "); if (do_confuse) Strcat(buf, "confused"); - pline("%s %s %s%c", hittee, vtense(hittee, "are"), + pline("%s %s %s%c", hittee, youdefend ? "are" : "is", buf, (do_stun && do_confuse) ? '!' : '.'); } }