vanquished monsters tidbit

Use the same terminology ("creatures" rather than "monsters") for
the two "no <foo> {have been, were} vanquished" messages as for the
"disclose vanquished <foo>" prompt and its "M <foo> vanquished"
summary.
This commit is contained in:
PatR
2017-03-10 16:35:49 -08:00
parent ed300e5fa8
commit 9623154bbc
+3 -3
View File
@@ -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. */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
@@ -1815,10 +1815,10 @@ boolean ask;
} }
} else if (defquery == 'a') { } else if (defquery == 'a') {
/* #dovanquished rather than final disclosure, so pline() is ok */ /* #dovanquished rather than final disclosure, so pline() is ok */
pline("No monsters have been vanquished."); pline("No creatures have been vanquished.");
#ifdef DUMPLOG #ifdef DUMPLOG
} else if (dumping) { } else if (dumping) {
putstr(0, 0, "No monsters were vanquished."); /* not pline() */ putstr(0, 0, "No creatures were vanquished."); /* not pline() */
#endif #endif
} }
} }