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

@@ -301,7 +301,7 @@ dog_eat(struct monst *mtmp,
mtmp->mstun = 1;
if (canseemon(mtmp)) {
obj_name = distant_name(obj, doname); /* (see above) */
if (Verbose(0, dog_eat))
if (flags.verbose)
pline("%s spits %s out in disgust!",
Monnam(mtmp), obj_name);
}
@@ -436,7 +436,7 @@ dog_invent(struct monst *mtmp, struct edog *edog, int udist)
while otmp is still on floor */
char *otmpname = distant_name(otmp, doname);
if (Verbose(0, dog_invent))
if (flags.verbose)
pline("%s picks up %s.",
Monnam(mtmp), otmpname);
}