summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/decks.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/decks.cc')
-rw-r--r--crawl-ref/source/decks.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/crawl-ref/source/decks.cc b/crawl-ref/source/decks.cc
index 3947e0aeca..423e4ba337 100644
--- a/crawl-ref/source/decks.cc
+++ b/crawl-ref/source/decks.cc
@@ -1880,7 +1880,9 @@ static void _shadow_card(int power, deck_rarity_type rarity)
{
mpr(you.duration[DUR_STEALTH] ? "You feel more catlike."
: "You feel stealthy.");
- you.duration[DUR_STEALTH] += random2(power/4) + 1;
+ int duration = (random2(power/4) + 1 ) * BASELINE_DELAY;
+
+ you.duration[DUR_STEALTH] += duration;
}
potion_effect(POT_INVISIBILITY, random2(power/4));