From 9623154bbcc6d0f3e5565034a610adbd9e6a04d9 Mon Sep 17 00:00:00 2001 From: PatR Date: Fri, 10 Mar 2017 16:35:49 -0800 Subject: [PATCH] vanquished monsters tidbit Use the same terminology ("creatures" rather than "monsters") for the two "no {have been, were} vanquished" messages as for the "disclose vanquished " prompt and its "M vanquished" summary. --- src/end.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/end.c b/src/end.c index c906c10b..7685a822 100644 --- a/src/end.c +++ b/src/end.c @@ -1,4 +1,4 @@ -/* NetHack 3.6 end.c $NHDT-Date: 1488788512 2017/03/06 08:21:52 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.129 $ */ +/* NetHack 3.6 end.c $NHDT-Date: 1489192539 2017/03/11 00:35:39 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.130 $ */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* NetHack may be freely redistributed. See license for details. */ @@ -1815,10 +1815,10 @@ boolean ask; } } else if (defquery == 'a') { /* #dovanquished rather than final disclosure, so pline() is ok */ - pline("No monsters have been vanquished."); + pline("No creatures have been vanquished."); #ifdef DUMPLOG } else if (dumping) { - putstr(0, 0, "No monsters were vanquished."); /* not pline() */ + putstr(0, 0, "No creatures were vanquished."); /* not pline() */ #endif } } -- 2.11.4.GIT