summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/beam.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-07-23 14:05:53 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-07-23 14:05:53 +0000
commitaa8f10d7e2c79af2d4c4718e009de90533455266 (patch)
tree12f0be696254453e6f3e3921c7d7e62bcbc9dc29 /crawl-ref/source/beam.cc
parent5868e750f1cf808282623db2d48eb04646b190f0 (diff)
downloadcrawl-ref-aa8f10d7e2c79af2d4c4718e009de90533455266.tar.gz
crawl-ref-aa8f10d7e2c79af2d4c4718e009de90533455266.zip
Tweak Yred's soul-marking duration one more time.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@10384 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/beam.cc')
-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 72d7458ee5..de1730cbbe 100644
--- a/crawl-ref/source/beam.cc
+++ b/crawl-ref/source/beam.cc
@@ -4859,7 +4859,7 @@ mon_resist_type bolt::apply_enchantment_to_monster(monsters* mon)
}
obvious_effect = true;
- const int duration = you.skills[SK_INVOCATIONS] * 2 / 3 + 2;
+ const int duration = you.skills[SK_INVOCATIONS] * 3 / 4 + 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);