aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMachiavelli <none@none>2010-03-19 16:26:46 +0100
committerMachiavelli <none@none>2010-03-19 16:26:46 +0100
commit01dc7aeb08c7eade4e887a1fbd4834022597491a (patch)
treee262483bd6530e08ce5e1ae7783479dca0c30b2e /src
parenta77ba0bf5621a4990ed123e78744dfaf78d9fe82 (diff)
Fix heirloom armor proficiency downgrading for warriors.
--HG-- branch : trunk
Diffstat (limited to 'src')
-rw-r--r--src/game/Player.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/game/Player.cpp b/src/game/Player.cpp
index 5c163ac3720..00626bdbc08 100644
--- a/src/game/Player.cpp
+++ b/src/game/Player.cpp
@@ -10972,6 +10972,7 @@ uint8 Player::CanUseItem( Item *pItem, bool not_loading ) const
allowEquip = (itemSkill == SKILL_MAIL);
break;
case CLASS_PALADIN:
+ case CLASS_WARRIOR:
allowEquip = (itemSkill == SKILL_PLATE_MAIL);
break;
}