[7804] Allow swap and move by bag slots equipped ammopouch and quiver

Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
Foks 2009-05-09 15:06:28 +04:00 committed by VladimirMangos
parent 3c057a92f5
commit 7204f83a55
2 changed files with 10 additions and 7 deletions

View file

@ -9570,14 +9570,17 @@ uint8 Player::CanEquipItem( uint8 slot, uint16 &dest, Item *pItem, bool swap, bo
{
if( Item* pBag = GetItemByPos( INVENTORY_SLOT_BAG_0, i ) )
{
if( ItemPrototype const* pBagProto = pBag->GetProto() )
if( pBag != pItem )
{
if( pBagProto->Class==pProto->Class && (!swap || pBag->GetSlot() != eslot ) )
if( ItemPrototype const* pBagProto = pBag->GetProto() )
{
if(pBagProto->SubClass == ITEM_SUBCLASS_AMMO_POUCH)
return EQUIP_ERR_CAN_EQUIP_ONLY1_AMMOPOUCH;
else
return EQUIP_ERR_CAN_EQUIP_ONLY1_QUIVER;
if( pBagProto->Class==pProto->Class && (!swap || pBag->GetSlot() != eslot ) )
{
if(pBagProto->SubClass == ITEM_SUBCLASS_AMMO_POUCH)
return EQUIP_ERR_CAN_EQUIP_ONLY1_AMMOPOUCH;
else
return EQUIP_ERR_CAN_EQUIP_ONLY1_QUIVER;
}
}
}
}