force tingling nose

<Someone> wrote:
>I also note that it's weird for your nose to stop tingling and your
>sense of smell to return to normal, if flags.beginner prevented your
>realising that your nose was tingling in the first place.
This commit is contained in:
nethack.allison
2002-02-04 10:38:20 +00:00
parent 6549930ee2
commit 2e030b4bf9

View File

@@ -313,9 +313,14 @@ register struct obj *sobj;
char buf[BUFSZ];
Sprintf(buf, "Your %s twitches%s.", body_part(NOSE),
(sobj->blessed && !u.uedibility) ? " then starts to tingle" : "");
strange_feeling(sobj, buf);
if (sobj->blessed && !u.uedibility)
if (sobj->blessed && !u.uedibility) {
boolean savebeginner = flags.beginner; /* prevent non-delivery of */
flags.beginner = FALSE; /* message */
strange_feeling(sobj, buf);
flags.beginner = savebeginner;
u.uedibility = 1;
} else
strange_feeling(sobj, buf);
}
return !stale;
} else if (!ct) {