Revert "granular verbose message suppression mechanics"
This reverts commit be76727265.
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user