[7326] Not allow have ammo_pouch and a quiver equipped in same time.

Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
balrok 2009-02-22 06:33:37 +03:00 committed by VladimirMangos
parent 218571a817
commit 8c701f6287
2 changed files with 2 additions and 3 deletions

View file

@ -9930,8 +9930,7 @@ uint8 Player::CanEquipItem( uint8 slot, uint16 &dest, Item *pItem, bool swap, bo
{
if( ItemPrototype const* pBagProto = pBag->GetProto() )
{
if( pBagProto->Class==pProto->Class && pBagProto->SubClass==pProto->SubClass &&
(!swap || pBag->GetSlot() != eslot ) )
if( pBagProto->Class==pProto->Class && (!swap || pBag->GetSlot() != eslot ) )
{
if(pBagProto->SubClass == ITEM_SUBCLASS_AMMO_POUCH)
return EQUIP_ERR_CAN_EQUIP_ONLY1_AMMOPOUCH;