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.
This commit is contained in:
@@ -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
|
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
|
non-weapon iron objects should rust when dipped in fountains since
|
||||||
iron weapons rust
|
iron weapons rust
|
||||||
|
suppress "turn to flee" message if monster is mfrozen
|
||||||
|
|
||||||
|
|
||||||
Platform- and/or Interface-Specific Fixes
|
Platform- and/or Interface-Specific Fixes
|
||||||
|
|||||||
@@ -214,7 +214,7 @@ boolean fleemsg;
|
|||||||
if (fleetime == 1) fleetime++;
|
if (fleetime == 1) fleetime++;
|
||||||
mtmp->mfleetim = min(fleetime, 127);
|
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)));
|
pline("%s turns to flee!", (Monnam(mtmp)));
|
||||||
mtmp->mflee = 1;
|
mtmp->mflee = 1;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user