Revert "granular verbose message suppression mechanics"

This reverts commit be76727265.
This commit is contained in:
nhmall
2023-10-29 20:39:07 -04:00
parent 9bd9bbc57c
commit 6cbefc7c2d
39 changed files with 135 additions and 146 deletions

View File

@@ -1154,7 +1154,7 @@ mon_poly(struct monst *magr, struct monst *mdef, int dmg)
} else if (newcham(mdef, (struct permonst *) 0, NO_NC_FLAGS)) {
if (gv.vis) { /* either seen or adjacent */
boolean was_seen = !!strcmpi("It", Before),
verbosely = Verbose(1, monpoly1) || !was_seen;
verbosely = flags.verbose || !was_seen;
if (canspotmon(mdef))
pline("%s%s%s turns into %s.", Before,
@@ -1174,7 +1174,7 @@ mon_poly(struct monst *magr, struct monst *mdef, int dmg)
(void) rloc(magr, RLOC_MSG);
}
} else {
if (gv.vis && Verbose(1, monpoly2))
if (gv.vis && flags.verbose)
pline1(nothing_happens);
}
}
@@ -1259,7 +1259,7 @@ mswingsm(
struct monst *mdef, /* defender */
struct obj *otemp) /* attacker's weapon */
{
if (Verbose(1, mswingsm) && !Blind && mon_visible(magr)) {
if (flags.verbose && !Blind && mon_visible(magr)) {
boolean bash = (is_pole(otemp)
&& dist2(magr->mx, magr->my, mdef->mx, mdef->my) <= 2);