summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/item_use.cc
diff options
context:
space:
mode:
authorDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-11-03 19:48:10 -0600
committerDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-11-03 19:49:12 -0600
commit20161f77a87bf5ef908369863755304ea011a8bd (patch)
treeca05404baf74af2297a215bb9fc7332fdd748ec1 /crawl-ref/source/item_use.cc
parentf135e519c69859bc36d875de3220c49a54bd8942 (diff)
downloadcrawl-ref-20161f77a87bf5ef908369863755304ea011a8bd.tar.gz
crawl-ref-20161f77a87bf5ef908369863755304ea011a8bd.zip
Fix hardcoding of "hands" in the wielding message for weapons of speed.
Diffstat (limited to 'crawl-ref/source/item_use.cc')
-rw-r--r--crawl-ref/source/item_use.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/item_use.cc b/crawl-ref/source/item_use.cc
index ef8d5f254b..5f3cd14ac3 100644
--- a/crawl-ref/source/item_use.cc
+++ b/crawl-ref/source/item_use.cc
@@ -587,7 +587,8 @@ void wield_effects(int item_wield_2, bool showMsgs)
break;
case SPWPN_SPEED:
- mpr("Your hands tingle!");
+ mprf("Your %s tingle!",
+ you.hand_name(true).c_str());
break;
case SPWPN_FLAME: