summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/player.cc')
-rw-r--r--crawl-ref/source/player.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc
index 668adb2e5a..b19996612c 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -6584,8 +6584,8 @@ int player::has_claws(bool allow_tran) const
// these are the only other sources for claws
if (species == SP_TROLL || species == SP_GHOUL)
return 3;
- else
- return mutation[MUT_CLAWS];
+
+ return player_mutation_level(MUT_CLAWS);
}
bool player::has_usable_claws(bool allow_tran) const