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.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/crawl-ref/source/decks.cc b/crawl-ref/source/decks.cc
index 97cb19da72..92471419fc 100644
--- a/crawl-ref/source/decks.cc
+++ b/crawl-ref/source/decks.cc
@@ -2277,7 +2277,10 @@ static void _dowsing_card(int power, deck_rarity_type rarity)
if ( things_to_do[1] )
detect_traps( random2(power/4) );
if ( things_to_do[2] )
- detect_creatures( random2(power/4) );
+ {
+ mpr("You feel telepathic!");
+ you.duration[DUR_TELEPATHY] = random2(power/4);
+ }
}
static bool _trowel_card(int power, deck_rarity_type rarity)