Fix not returning a valid weaponID for cz75a (irc, r=KyleS)

This commit is contained in:
Ruben Gonzalez 2014-02-13 13:19:59 -05:00
parent 01fc010719
commit ab6971656b

View File

@ -649,6 +649,10 @@ static cell_t CS_AliasToWeaponID(IPluginContext *pContext, const cell_t *params)
{
return SMCSWeapon_HKP2000;
}
else if(strstr(weapon, "cz75a") != NULL)
{
return SMCSWeapon_P250;
}
#endif
int id = GetFakeWeaponID(AliasToWeaponID(weapon));