]> granicus.if.org Git - nethack/commitdiff
Imps and others cussing the hero wake up nearby monsters
authorPasi Kallinen <paxed@alt.org>
Sat, 19 Feb 2022 15:18:07 +0000 (17:18 +0200)
committerPasi Kallinen <paxed@alt.org>
Sat, 19 Feb 2022 15:18:07 +0000 (17:18 +0200)
doc/fixes3-7-0.txt
src/wizard.c

index 3e5cbd8ad89b4d0b1a2f9fb4c1e14c5f7e08c77f..f3b75d43b81bf62b25f3406d55dce53335269fb2 100644 (file)
@@ -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
index 5fde5060db745f9b934dc045410ac01ab87c0cc9..d917adcef7505fa78d450f87f1c0640a84344d5d 100644 (file)
@@ -815,6 +815,7 @@ cuss(struct monst *mtmp)
         else
             com_pager("demon_cuss");
     }
+    wake_nearto(mtmp->mx, mtmp->my, 5 * 5);
 }
 
 /*wizard.c*/