From 70dafd658d6f21634aae6d065d19cd6f0c5ee69c Mon Sep 17 00:00:00 2001 From: Pasi Kallinen Date: Sat, 19 Feb 2022 17:18:07 +0200 Subject: [PATCH] Imps and others cussing the hero wake up nearby monsters --- doc/fixes3-7-0.txt | 1 + src/wizard.c | 1 + 2 files changed, 2 insertions(+) diff --git a/doc/fixes3-7-0.txt b/doc/fixes3-7-0.txt index 3e5cbd8ad..f3b75d43b 100644 --- a/doc/fixes3-7-0.txt +++ b/doc/fixes3-7-0.txt @@ -790,6 +790,7 @@ towels weigh more than blindfolds knight quest home level contains some saddled warhorses allow creating unhidden traps in special levels reading magic marker shows the specific red ink color +imps and other creatures cussing hero wake up nearby monsters Fixes to 3.7.0-x Problems that Were Exposed Via git Repository diff --git a/src/wizard.c b/src/wizard.c index 5fde5060d..d917adcef 100644 --- a/src/wizard.c +++ b/src/wizard.c @@ -815,6 +815,7 @@ cuss(struct monst *mtmp) else com_pager("demon_cuss"); } + wake_nearto(mtmp->mx, mtmp->my, 5 * 5); } /*wizard.c*/