summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/decks.cc
diff options
context:
space:
mode:
authorNicholas Feinberg <pleasingfung@gmail.com>2014-05-26 15:34:53 -0700
committerNicholas Feinberg <pleasingfung@gmail.com>2014-05-27 19:21:11 -0700
commit6644165f80cb0b139aa655a56b9361ecb6f82761 (patch)
tree8870b66e2f9c37c421907caf9320c43340ac06c7 /crawl-ref/source/decks.cc
parentea3f500ce5e3dedb9d6dd4b2878e6bc9e9833bc2 (diff)
downloadcrawl-ref-6644165f80cb0b139aa655a56b9361ecb6f82761.tar.gz
crawl-ref-6644165f80cb0b139aa655a56b9361ecb6f82761.zip
Hauntify Tukima's Dance.
Make Tukima's Dance weapons (almost) only attack their original owner. Removes the last reason to do fiddly weapon-swapping.
Diffstat (limited to 'crawl-ref/source/decks.cc')
-rw-r--r--crawl-ref/source/decks.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/decks.cc b/crawl-ref/source/decks.cc
index cffb3423a0..ce0aee533c 100644
--- a/crawl-ref/source/decks.cc
+++ b/crawl-ref/source/decks.cc
@@ -2022,7 +2022,7 @@ static void _blade_card(int power, deck_rarity_type rarity)
if (power_level >= 2)
{
- cast_tukimas_dance(random2(power/4), &you);
+ cast_tukimas_dance(random2(power/4), &you, true);
return;
}
else if (power_level == 1)