diff --git a/src/game/Player.cpp b/src/game/Player.cpp index a27409c61..0ce76b0ff 100644 --- a/src/game/Player.cpp +++ b/src/game/Player.cpp @@ -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; diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index b43b41874..3ccc7e947 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "7325" + #define REVISION_NR "7326" #endif // __REVISION_NR_H__