summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/abl-show.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/abl-show.cc')
-rw-r--r--crawl-ref/source/abl-show.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/crawl-ref/source/abl-show.cc b/crawl-ref/source/abl-show.cc
index 1e3bf2b0c8..ecf933fe8f 100644
--- a/crawl-ref/source/abl-show.cc
+++ b/crawl-ref/source/abl-show.cc
@@ -1315,9 +1315,8 @@ static bool do_ability(const ability_def& abil)
mpr("There's no-one here to preach to!");
return (false);
}
-// const int pow = (you.skills[SK_INVOCATIONS] + 12) * (50 + you.piety) / 600;
- // up to (60 + 33)/3 = 31
- const int pow = ( 2*skill_bump(SK_INVOCATIONS) + you.piety / 6 ) / 3;
+ // up to (60 + 40)/2 = 50
+ const int pow = ( 2*skill_bump(SK_INVOCATIONS) + you.piety / 5 ) / 2;
start_delay(DELAY_RECITE, 3, pow, you.hp);
exercise( SK_INVOCATIONS, (one_chance_in(3)? 2 : 1) );