From e0db090d3d478e27faa848ff58bb2e24c8804ed8 Mon Sep 17 00:00:00 2001 From: "nethack.allison" Date: Sun, 14 Jul 2002 18:29:34 +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. Another try. --- src/fountain.c | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/fountain.c b/src/fountain.c index 2be456d3a..69133de83 100644 --- a/src/fountain.c +++ b/src/fountain.c @@ -289,11 +289,13 @@ drinkfountain() case 25: /* See invisible */ - if (Blind && Invisible) { - You("feel very self-conscious."); - pline("Then it passes."); - } else if (Invisible) { /* but not Blind */ - You("feel transparent."); + if (Blind) { + if (Invisible) { + You("feel transparent."); + } else { + You("feel very self-conscious."); + pline("Then it passes."); + } } else { You("see an image of someone stalking you."); pline("But it disappears."); -- 2.40.0