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

@@ -1250,12 +1250,12 @@ use_crystal_ball(struct obj **optr)
}
/* read a single character */
if (Verbose(0, use_crystal_ball1))
if (flags.verbose)
You("may look for an object, monster, or special map symbol.");
ch = yn_function("What do you look for?", (char *) 0, '\0', TRUE);
/* Don't filter out ' ' here; it has a use */
if ((ch != def_monsyms[S_GHOST].sym) && strchr(quitchars, ch)) {
if (Verbose(0, use_crystal_ball2))
if (flags.verbose)
pline1(Never_mind);
return;
}