From: nethack.allison Date: Sat, 18 Oct 2003 14:02:25 +0000 (+0000) Subject: buglist: Vlad can turn to flee and be paralyzed at the same time X-Git-Tag: MOVE2GIT~1685 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6820b0520b8a96b69340aeeff6f00a666354283d;p=nethack buglist: Vlad can turn to flee and be paralyzed at the same time This is a cop-out in that it just suppresses the message. --- diff --git a/doc/fixes34.3 b/doc/fixes34.3 index 0f0c1de5b..58c8fabf2 100644 --- a/doc/fixes34.3 +++ b/doc/fixes34.3 @@ -50,6 +50,7 @@ eating an amulet of unchanging un-changes you Vlad won't waste time trying to use wand of digging in his own tower non-weapon iron objects should rust when dipped in fountains since iron weapons rust +suppress "turn to flee" message if monster is mfrozen Platform- and/or Interface-Specific Fixes diff --git a/src/monmove.c b/src/monmove.c index ff4546f86..be4bdb8ae 100644 --- a/src/monmove.c +++ b/src/monmove.c @@ -214,7 +214,7 @@ boolean fleemsg; if (fleetime == 1) fleetime++; mtmp->mfleetim = min(fleetime, 127); } - if (!mtmp->mflee && fleemsg && canseemon(mtmp)) + if (!mtmp->mflee && fleemsg && canseemon(mtmp) && !mtmp->mfrozen) pline("%s turns to flee!", (Monnam(mtmp))); mtmp->mflee = 1; }