summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells4.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/spells4.cc')
-rw-r--r--crawl-ref/source/spells4.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/spells4.cc b/crawl-ref/source/spells4.cc
index c8d51b2eec..8a7b7511d7 100644
--- a/crawl-ref/source/spells4.cc
+++ b/crawl-ref/source/spells4.cc
@@ -86,14 +86,14 @@ std::string your_hand( bool plural )
mpr("ERROR: unknown transformation in your_hand() (spells4.cc)");
case TRAN_NONE:
case TRAN_STATUE:
- if (you.species == SP_TROLL || you.species == SP_GHOUL)
+ case TRAN_LICH:
+ if (you.has_usable_claws())
{
result = "claw";
break;
}
// or fall-through
case TRAN_ICE_BEAST:
- case TRAN_LICH:
result = "hand";
break;
case TRAN_SPIDER: