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.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc
index 149185ed6b..91ee0dea54 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -377,11 +377,12 @@ int player_damage_type( void )
{
return (damage_type(you.inv[wpn]));
}
- else if (you.attribute[ATTR_TRANSFORMATION] == TRAN_BLADE_HANDS
+ else if (you.equip[EQ_GLOVES] == -1 &&
+ (you.attribute[ATTR_TRANSFORMATION] == TRAN_BLADE_HANDS
|| you.attribute[ATTR_TRANSFORMATION] == TRAN_DRAGON
|| you.mutation[MUT_CLAWS]
|| you.species == SP_TROLL
- || you.species == SP_GHOUL)
+ || you.species == SP_GHOUL))
{
return (DVORP_SLICING);
}