summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells2.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/spells2.cc')
-rw-r--r--crawl-ref/source/spells2.cc7
1 files changed, 5 insertions, 2 deletions
diff --git a/crawl-ref/source/spells2.cc b/crawl-ref/source/spells2.cc
index ef7c62c23b..1fbef13c7e 100644
--- a/crawl-ref/source/spells2.cc
+++ b/crawl-ref/source/spells2.cc
@@ -1768,7 +1768,7 @@ bool cast_tukimas_dance(int pow, god_type god,
const int wpn = you.equip[EQ_WEAPON];
- // See if wielded item is appropriate.
+ // See if the wielded item is appropriate.
if (wpn == -1
|| you.inv[wpn].base_type != OBJ_WEAPONS
|| is_range_weapon(you.inv[wpn])
@@ -1809,7 +1809,10 @@ bool cast_tukimas_dance(int pow, god_type god,
if (!quiet_failure)
{
if (wpn != -1)
- mpr("Your weapon vibrates crazily for a second.");
+ {
+ mprf("%s vibrates crazily for a second.",
+ you.inv[wpn].name(DESC_CAP_YOUR).c_str());
+ }
else
msg::stream << "Your " << your_hand(true) << " twitch."
<< std::endl;