From: nethack.rankin Date: Sun, 24 Feb 2002 00:51:20 +0000 (+0000) Subject: "fix" B6004 X-Git-Tag: MOVE2GIT~3137 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3ae126c83f0335208effa41fae3f9375e3bf90f3;p=nethack "fix" B6004 The comment about Book of the Dead's taming effect working on nearby monsters when read while swallowed was wrong. It was only put there in the first place to avoid adding extra code to suppress taming while swallowed when that was done for the other methods of taming. Any need for extra code here turns out to be unnecessary due to the cansee() check. --- diff --git a/src/spell.c b/src/spell.c index 68967ff62..4b3ef429d 100644 --- a/src/spell.c +++ b/src/spell.c @@ -241,7 +241,6 @@ raise_dead: mm.y = u.uy; mkundead(&mm, TRUE, NO_MINVENT); } else if(book2->blessed) { - /* the Book operates on nearby monsters even if you're swallowed */ for(mtmp = fmon; mtmp; mtmp = mtmp2) { mtmp2 = mtmp->nmon; /* tamedog() changes chain */ if (DEADMONSTER(mtmp)) continue;