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

@@ -62,7 +62,7 @@ fingers_or_gloves(boolean check_gloves)
void
off_msg(struct obj *otmp)
{
if (Verbose(0, off_msg))
if (flags.verbose)
You("were wearing %s.", doname(otmp));
}
@@ -70,7 +70,7 @@ off_msg(struct obj *otmp)
static void
on_msg(struct obj *otmp)
{
if (Verbose(0, on_msg)) {
if (flags.verbose) {
char how[BUFSZ];
/* call xname() before obj_is_pname(); formatting obj's name
might set obj->dknown and that affects the pname test */
@@ -1345,7 +1345,7 @@ Blindf_on(struct obj *otmp)
if (Blind && !already_blind) {
changed = TRUE;
if (Verbose(0, Blindf_on))
if (flags.verbose)
You_cant("see any more.");
/* set ball&chain variables before the hero goes blind */
if (Punished)