From 56634c48503eb63f23a01874e5abe8717f6966fe Mon Sep 17 00:00:00 2001 From: "nethack.allison" Date: Sun, 14 Jul 2002 18:04:59 +0000 Subject: [PATCH] B04009 ftn msg when blind/!invis and gain see invis. writes: Why do you "feel transparent" when you gain see invisible from a fountain when blind and _not_ invisible? Transparency usually refers to _being_ invisible. Good point. I think this may have been what was intended, but it's been like this for quite a while. --- src/fountain.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/fountain.c b/src/fountain.c index 63effbe7a..2be456d3a 100644 --- a/src/fountain.c +++ b/src/fountain.c @@ -289,13 +289,11 @@ drinkfountain() case 25: /* See invisible */ - if (Blind) { - if (Invisible) { + if (Blind && Invisible) { You("feel very self-conscious."); pline("Then it passes."); - } else { + } else if (Invisible) { /* but not Blind */ You("feel transparent."); - } } else { You("see an image of someone stalking you."); pline("But it disappears.");