summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-cast.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/spl-cast.cc')
-rw-r--r--crawl-ref/source/spl-cast.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/crawl-ref/source/spl-cast.cc b/crawl-ref/source/spl-cast.cc
index 35cff2da38..e572fe4a6e 100644
--- a/crawl-ref/source/spl-cast.cc
+++ b/crawl-ref/source/spl-cast.cc
@@ -402,7 +402,9 @@ int spell_fail(int spell)
&& (spell_typematch(spell, SPTYP_CONJURATION)
|| spell_typematch(spell, SPTYP_SUMMONING)))
{
- chance2 /= 2;
+ // [dshaligram] Fail rate multiplier used to be .5, scaled
+ // back to 2/3.
+ chance2 = chance2 * 2 / 3;
}
if (you.duration[DUR_TRANSFORMATION] > 0)