From ec5efa96438adfc360dd09741cee901fd2ad0434 Mon Sep 17 00:00:00 2001 From: unknown Date: Sat, 24 Sep 2011 04:53:52 +0900 Subject: [PATCH] reduce bad potion effect --- src/potion.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/potion.c b/src/potion.c index 04abd41..6654aa4 100644 --- a/src/potion.c +++ b/src/potion.c @@ -443,7 +443,7 @@ peffects(otmp) case POT_HALLUCINATION: if (Hallucination || Halluc_resistance) nothing++; (void) make_hallucinated(itimeout_incr(HHallucination, - rn1(200, 600 - 300 * bcsign(otmp))), + rn1(100, 150 - 50 * bcsign(otmp))), TRUE, 0L); break; case POT_WATER: @@ -749,7 +749,7 @@ peffects(otmp) case POT_BLINDNESS: if(Blind) nothing++; make_blinded(itimeout_incr(Blinded, - rn1(200, 250 - 125 * bcsign(otmp))), + rn1(100, 150 - 50 * bcsign(otmp))), (boolean)!Blind); break; case POT_GAIN_LEVEL: -- 2.11.0