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