U719: grayswandir and exploding black lights

<email deleted> wrote:
> When wielding greyswander and a black light explodes, the
> message is still "You are freaked by a blast of kaleidoscopic
> light!" giving no indication that you are immune to
> hallucination. Maybe something like "You see a blast of color,
> but seem unaffected" would be more appropriate?

return the changed status back to the caller from
make_hallucinated().
This commit is contained in:
nethack.allison
2003-10-29 13:03:23 +00:00
parent fec5392055
commit cdbe3b1d39
10 changed files with 19 additions and 15 deletions

View File

@@ -1869,9 +1869,11 @@ common:
u.umonnum == PM_VIOLET_FUNGUS ||
dmgtype(youmonst.data, AD_STUN));
if (!not_affected) {
boolean chg;
if (!Hallucination)
You("are freaked by a blast of kaleidoscopic light!");
make_hallucinated(HHallucination + (long)tmp,FALSE,0L);
You("are caught in a blast of kaleidoscopic light!");
chg = make_hallucinated(HHallucination + (long)tmp,FALSE,0L);
You("%s.", chg ? "are freaked out" : "seem unaffected");
}
break;