From: PatR Date: Sat, 11 Mar 2017 00:35:49 +0000 (-0800) Subject: vanquished monsters tidbit X-Git-Tag: NetHack-3.6.1_RC01~515 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9623154bbcc6d0f3e5565034a610adbd9e6a04d9;p=nethack 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. --- diff --git a/src/end.c b/src/end.c index c906c10b9..7685a8226 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 } }