From 54bba21dd9cd46e552b1d07fb3fff6f1de17b787 Mon Sep 17 00:00:00 2001 From: Pasi Kallinen Date: Tue, 21 Dec 2021 13:10:03 +0200 Subject: [PATCH] Give message for genod shifter changing shape For accessibility, give a message when a monster changes shape due to the previous shape being genocided. --- src/mon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mon.c b/src/mon.c index bee0e0040..273a7f9a6 100644 --- a/src/mon.c +++ b/src/mon.c @@ -4595,7 +4595,7 @@ kill_genocided_monsters(void) && (g.mvitals[mtmp->cham].mvflags & G_GENOD)); if ((g.mvitals[mndx].mvflags & G_GENOD) || kill_cham) { if (mtmp->cham >= LOW_PM && !kill_cham) - (void) newcham(mtmp, (struct permonst *) 0, FALSE, FALSE); + (void) newcham(mtmp, (struct permonst *) 0, FALSE, TRUE); else mondead(mtmp); }