summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-other.cc
diff options
context:
space:
mode:
authorSage <SageBasilMint@gmail.com>2014-05-06 03:12:12 +0000
committerSage <SageBasilMint@gmail.com>2014-05-06 03:53:33 +0000
commitba0cf197de24d8fc57e9cc5fe56c025c4713070b (patch)
tree2882952be521dfb0d9b60dbd02995f59a68104f7 /crawl-ref/source/spl-other.cc
parent30f0b4952198c2b0710aa0434b6e76f70812ec23 (diff)
downloadcrawl-ref-ba0cf197de24d8fc57e9cc5fe56c025c4713070b.tar.gz
crawl-ref-ba0cf197de24d8fc57e9cc5fe56c025c4713070b.zip
Double death channel duration.
Diffstat (limited to 'crawl-ref/source/spl-other.cc')
-rw-r--r--crawl-ref/source/spl-other.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/spl-other.cc b/crawl-ref/source/spl-other.cc
index 2a02cd5d34..95f93a57ee 100644
--- a/crawl-ref/source/spl-other.cc
+++ b/crawl-ref/source/spl-other.cc
@@ -156,7 +156,7 @@ spret_type cast_sublimation_of_blood(int pow, bool fail)
spret_type cast_death_channel(int pow, god_type god, bool fail)
{
- if (you.duration[DUR_DEATH_CHANNEL] >= 30 * BASELINE_DELAY)
+ if (you.duration[DUR_DEATH_CHANNEL] >= 60 * BASELINE_DELAY)
{
canned_msg(MSG_NOTHING_HAPPENS);
return SPRET_ABORT;
@@ -165,7 +165,7 @@ spret_type cast_death_channel(int pow, god_type god, bool fail)
fail_check();
mpr("Malign forces permeate your being, awaiting release.");
- you.increase_duration(DUR_DEATH_CHANNEL, 15 + random2(1 + pow/3), 100);
+ you.increase_duration(DUR_DEATH_CHANNEL, 30 + random2(1 + 2*pow/3), 200);
if (god != GOD_NO_GOD)
you.attribute[ATTR_DIVINE_DEATH_CHANNEL] = static_cast<int>(god);