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.");