Fixed a compilation warning caused by a signed/unsigned mismatch.

This commit is contained in:
Tristan Cormier 2017-01-28 01:22:13 -05:00 committed by Antz
parent 168ffc3dbb
commit 06d9945fd9

View File

@ -9816,7 +9816,7 @@ InventoryResult Player::CanUseItem(ItemPrototype const* pProto, bool direct_acti
{ return EQUIP_ERR_CANT_EQUIP_RANK; }
// override mount level requirements with the settings from the configuration file
int requiredLevel = pProto->RequiredLevel;
uint32 requiredLevel = pProto->RequiredLevel;
switch(pProto->ItemId) {
case 1132: //regular mounts
case 2411: