summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/transfor.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-10-25 12:53:10 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-10-25 12:53:10 +0000
commitecbea4c802865232609ace69a3858564adb4377c (patch)
treebb8415a254ae49b3c11558e532819a6ff9db5b91 /crawl-ref/source/transfor.cc
parent31a7fbf338b542570bdb9f91483ca58de1aeaae3 (diff)
downloadcrawl-ref-ecbea4c802865232609ace69a3858564adb4377c.tar.gz
crawl-ref-ecbea4c802865232609ace69a3858564adb4377c.zip
[1818982] Kenku talons as mutation (dolorous).
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2561 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/transfor.cc')
-rw-r--r--crawl-ref/source/transfor.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/transfor.cc b/crawl-ref/source/transfor.cc
index 913f395bbf..3070123ac1 100644
--- a/crawl-ref/source/transfor.cc
+++ b/crawl-ref/source/transfor.cc
@@ -610,7 +610,6 @@ bool can_equip( equipment_type use_which, bool ignore_temporary )
switch (you.species)
{
case SP_NAGA:
- case SP_KENKU:
return (false);
default:
break;
@@ -631,7 +630,8 @@ bool can_equip( equipment_type use_which, bool ignore_temporary )
if (use_which == EQ_HELMET && you.mutation[MUT_HORNS])
return (false);
- if (use_which == EQ_BOOTS && you.mutation[MUT_HOOVES])
+ if (use_which == EQ_BOOTS &&
+ (you.mutation[MUT_HOOVES] || you.mutation[MUT_TALONS]))
return (false);
if (use_which == EQ_GLOVES && you.mutation[MUT_CLAWS] >= 3)