From: nethack.rankin Date: Tue, 12 Aug 2003 06:37:42 +0000 (+0000) Subject: grammar bit: fix "the Eyes of the Overworld is ignoring you" X-Git-Tag: MOVE2GIT~1858 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=83199788f8ea38613321794e3af937281155cb69;p=nethack grammar bit: fix "the Eyes of the Overworld is ignoring you" --- diff --git a/src/artifact.c b/src/artifact.c index eb758c631..bb70d9b93 100644 --- a/src/artifact.c +++ b/src/artifact.c @@ -1,4 +1,4 @@ -/* SCCS Id: @(#)artifact.c 3.4 2003/02/08 */ +/* SCCS Id: @(#)artifact.c 3.4 2003/08/11 */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* NetHack may be freely redistributed. See license for details. */ @@ -1199,7 +1199,8 @@ arti_invoke(obj) /* It's a special power, not "just" a property */ if(obj->age > monstermoves) { /* the artifact is tired :-) */ - You_feel("that %s is ignoring you.", the(xname(obj))); + You_feel("that %s %s ignoring you.", + the(xname(obj)), otense(obj, "are")); /* and just got more so; patience is essential... */ obj->age += (long) d(3,10); return 1; @@ -1357,7 +1358,8 @@ arti_invoke(obj) if(on && obj->age > monstermoves) { /* the artifact is tired :-) */ u.uprops[oart->inv_prop].extrinsic ^= W_ARTI; - You_feel("that %s is ignoring you.", the(xname(obj))); + You_feel("that %s %s ignoring you.", + the(xname(obj)), otense(obj, "are")); /* can't just keep repeatedly trying */ obj->age += (long) d(3,10); return 1;