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

@@ -1501,7 +1501,7 @@ consume_tin(const char *mesg)
pline("It smells like %s.", what);
if (y_n("Eat it?") == 'n') {
if (Verbose(0, consume_tin1))
if (flags.verbose)
You("discard the open tin.");
if (!Hallucination)
tin->dknown = tin->known = 1;
@@ -1554,7 +1554,7 @@ consume_tin(const char *mesg)
}
if (y_n("Eat it?") == 'n') {
if (Verbose(0, consume_tin2))
if (flags.verbose)
You("discard the open tin.");
tin = costly_tin(COST_OPEN);
goto use_up_tin;