From 7198981afd72d945da9028d9845803fb623b071f Mon Sep 17 00:00:00 2001 From: PatR Date: Tue, 16 Apr 2024 23:52:29 -0700 Subject: [PATCH] quickmimic bit Improve the feedback for an unnamed pet eating a mimic corpse. |You see a tripe ration where Rover was. is ok. |You see a tripe ration where the dog was. looks somewhat odd. Change that to be |You see a tripe ration where your dog was. --- src/dogmove.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dogmove.c b/src/dogmove.c index dedb26743..f54b3a804 100644 --- a/src/dogmove.c +++ b/src/dogmove.c @@ -1,4 +1,4 @@ -/* NetHack 3.7 dogmove.c $NHDT-Date: 1646688063 2022/03/07 21:21:03 $ $NHDT-Branch: NetHack-3.7 $:$NHDT-Revision: 1.112 $ */ +/* NetHack 3.7 dogmove.c $NHDT-Date: 1713336326 2024/04/17 06:45:26 $ $NHDT-Branch: NetHack-3.7 $:$NHDT-Revision: 1.150 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /*-Copyright (c) Robert Patrick Rankin, 2012. */ /* NetHack may be freely redistributed. See license for details. */ @@ -1443,7 +1443,7 @@ quickmimic(struct monst *mtmp) if (trycnt == 0) idx = SIZE(qm) - 1; - Strcpy(buf, mon_nam(mtmp)); + Strcpy(buf, y_monnam(mtmp)); /* "your " or "the " or "Fang" */ spotted = canspotmon(mtmp); seeloc = cansee(mtmp->mx, mtmp->my);