1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-02-21 20:27:13 +01:00

Update GetWeaponID() to recognize "Ingram" without the "Silenced" portion.

This commit is contained in:
Sandu Liviu Catalin 2016-07-17 16:49:15 +03:00
parent cc04ff2bfc
commit 5cc8cfffa9

View File

@ -175,6 +175,7 @@ Int32 GetWeaponID(CCStr name)
else return SQMOD_UNKNOWN; else return SQMOD_UNKNOWN;
// [N]ightstick // [N]ightstick
case 'n': return SQMOD_WEAPON_NIGHTSTICK; case 'n': return SQMOD_WEAPON_NIGHTSTICK;
case 'i': return SQMOD_WEAPON_INGRAM;
// [P]ump-Action Shotgun // [P]ump-Action Shotgun
// [P]ython // [P]ython
case 'p': case 'p':