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.cc17
1 files changed, 4 insertions, 13 deletions
diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc
index 5b138ebe2f..a1318308c9 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -610,11 +610,8 @@ bool player_has_feet()
if (you.species == SP_NAGA || player_genus(GENPC_DRACONIAN))
return false;
- if (you.mutation[MUT_HOOVES] || you.mutation[MUT_TALONS]
- || you.mutation[MUT_PAWS])
- {
+ if (you.mutation[MUT_HOOVES] || you.mutation[MUT_TALONS])
return false;
- }
return true;
}
@@ -629,8 +626,7 @@ bool you_tran_can_wear(int eq, bool check_mutation)
if (eq == EQ_BOOTS
&& (player_is_swimming() && you.species == SP_MERFOLK
- || you.mutation[MUT_HOOVES] || you.mutation[MUT_TALONS]
- || you.mutation[MUT_PAWS]))
+ || you.mutation[MUT_HOOVES] || you.mutation[MUT_TALONS]))
{
return false;
}
@@ -3518,13 +3514,8 @@ int check_stealth(void)
else if ( !player_can_swim() )
stealth /= 2; // splashy-splashy
}
- else
- {
- if (you.mutation[MUT_HOOVES])
- stealth -= 10; // clippety-clop
- else if (you.mutation[MUT_PAWS])
- stealth += 10;
- }
+ else if (you.mutation[MUT_HOOVES])
+ stealth -= 10; // clippety-clop
// Radiating silence is the negative complement of shouting all the
// time... a sudden change from background noise to no noise is going