Blessed potion of see invisible

Blessed potion of see invisible was guaranteed to give see invisible
intrinsic, making it far too easy to acquire.  It now has 1/10 chance
of giving it permanently, somewhat similarly to potion of invisibility.
This commit is contained in:
Pasi Kallinen
2026-04-04 16:57:32 +03:00
parent c5efbf6cf7
commit 87b3549134
2 changed files with 2 additions and 1 deletions

View File

@@ -863,7 +863,7 @@ peffect_see_invisible(struct obj *otmp)
*/
make_blinded(0L, TRUE);
}
if (otmp->blessed)
if (otmp->blessed && !rn2(10))
HSee_invisible |= FROMOUTSIDE;
else
incr_itimeout(&HSee_invisible, rn1(100, 750));