summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/misc.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-27 16:40:23 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-27 16:40:23 +0000
commitb30893ad4549dc9c34f5dffb2330af6a9e955ebc (patch)
tree4124bb2f280c06e77d405cf93a8de45bbfaf785a /crawl-ref/source/misc.cc
parent551f48c7e461b3f5aff4415580fa2a235d74da5a (diff)
downloadcrawl-ref-b30893ad4549dc9c34f5dffb2330af6a9e955ebc.tar.gz
crawl-ref-b30893ad4549dc9c34f5dffb2330af6a9e955ebc.zip
In your_hand(), display "claw" instead of "hand" for the naturally
clawed races (trolls and ghouls) again. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6171 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/misc.cc')
-rw-r--r--crawl-ref/source/misc.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/misc.cc b/crawl-ref/source/misc.cc
index b0632097e3..163255ea2e 100644
--- a/crawl-ref/source/misc.cc
+++ b/crawl-ref/source/misc.cc
@@ -2668,7 +2668,7 @@ std::string your_hand(bool plural)
case TRAN_NONE:
case TRAN_STATUE:
case TRAN_LICH:
- result = (you.has_usable_claws() ? "claw" : "hand");
+ result = you.has_usable_claws() ? "claw" : "hand";
case TRAN_ICE_BEAST:
result = "hand";
break;