summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-07-16 17:49:07 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-07-16 17:49:07 +0000
commit5a4c99fc27817058a09a4ea59a5ed5f6ed040685 (patch)
treef3c65f212d3def4fab9db241e435ba802ca6e81e /crawl-ref
parent3c2b4ba3c7a12ecfd26fe8e6be61fc94455f03ba (diff)
downloadcrawl-ref-5a4c99fc27817058a09a4ea59a5ed5f6ed040685.tar.gz
crawl-ref-5a4c99fc27817058a09a4ea59a5ed5f6ed040685.zip
Tweak the duration of soul-marking one more time.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@10241 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/beam.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/beam.cc b/crawl-ref/source/beam.cc
index d3e006c11c..dd420adaad 100644
--- a/crawl-ref/source/beam.cc
+++ b/crawl-ref/source/beam.cc
@@ -4838,7 +4838,7 @@ mon_resist_type bolt::apply_enchantment_to_monster(monsters* mon)
}
obvious_effect = true;
- const int duration = you.skills[SK_INVOCATIONS] * 3 / 4 + 2;
+ const int duration = you.skills[SK_INVOCATIONS] * 2 / 3 + 2;
mon->add_ench(mon_enchant(ENCH_SOUL_RIPE, 0, KC_YOU, duration * 10));
simple_monster_message(mon, "'s soul is now ripe for the taking.");
return (MON_AFFECTED);