summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells4.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/spells4.cc')
-rw-r--r--crawl-ref/source/spells4.cc8
1 files changed, 5 insertions, 3 deletions
diff --git a/crawl-ref/source/spells4.cc b/crawl-ref/source/spells4.cc
index 6970ceb668..68c61ad0f9 100644
--- a/crawl-ref/source/spells4.cc
+++ b/crawl-ref/source/spells4.cc
@@ -757,10 +757,12 @@ void cast_silence(int pow)
you.attribute[ATTR_WAS_SILENCED] = 1;
- you.duration[DUR_SILENCE] += 10 + random2avg( pow, 2 );
+ int value = 10 + random2avg( pow, 2 );
+ value *= BASELINE_DELAY;
+ you.duration[DUR_SILENCE] += value;
- if (you.duration[DUR_SILENCE] > 100)
- you.duration[DUR_SILENCE] = 100;
+ if (you.duration[DUR_SILENCE] > 100 * BASELINE_DELAY)
+ you.duration[DUR_SILENCE] = 100 * BASELINE_DELAY;
if (you.beheld())
{