From: Pasi Kallinen Date: Sun, 17 Jul 2022 06:04:12 +0000 (+0300) Subject: Wielding a bec de corbin makes ravens generate peaceful X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1ae2bc7063ebe3c3831a707efd3fc3d6fd638d26;p=nethack Wielding a bec de corbin makes ravens generate peaceful --- diff --git a/doc/fixes3-7-0.txt b/doc/fixes3-7-0.txt index e4fcb8828..7ce529fb6 100644 --- a/doc/fixes3-7-0.txt +++ b/doc/fixes3-7-0.txt @@ -967,6 +967,7 @@ if blind hero was challanged by a vault guard, it wasn't possible to see how to start following that guard out of the vault make taming via magic harp be consistent with scroll of taming and charm spell: an angry shopkeeper becomes pacified (but never tamed) +wielding a bec de corbin makes ravens generate peaceful Fixes to 3.7.0-x Problems that Were Exposed Via git Repository diff --git a/src/makemon.c b/src/makemon.c index de0e77297..4cde2f46c 100644 --- a/src/makemon.c +++ b/src/makemon.c @@ -1363,6 +1363,8 @@ makemon( || uwep->oartifact == ART_DEMONBANE)) mtmp->mpeaceful = mtmp->mtame = FALSE; } + if (mndx == PM_RAVEN && uwep && uwep->otyp == BEC_DE_CORBIN) + mtmp->mpeaceful = TRUE; if (mndx == PM_LONG_WORM && (mtmp->wormno = get_wormno()) != 0) { initworm(mtmp, allowtail ? rn2(5) : 0); if (count_wsegs(mtmp))