]> granicus.if.org Git - nethack/commitdiff
grammar bit: fix "the Eyes of the Overworld is ignoring you"
authornethack.rankin <nethack.rankin>
Tue, 12 Aug 2003 06:37:42 +0000 (06:37 +0000)
committernethack.rankin <nethack.rankin>
Tue, 12 Aug 2003 06:37:42 +0000 (06:37 +0000)
src/artifact.c

index eb758c631a04f24e9198088333099fbf0eb188f7..bb70d9b9385a6764879d83e5e8181609e9900bd5 100644 (file)
@@ -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;