diff --git a/iw4x/iw4x_00/maps/mp/gametypes/_class.gsc b/iw4x/iw4x_00/maps/mp/gametypes/_class.gsc index cc3eeb8..d981d4a 100644 --- a/iw4x/iw4x_00/maps/mp/gametypes/_class.gsc +++ b/iw4x/iw4x_00/maps/mp/gametypes/_class.gsc @@ -620,11 +620,9 @@ giveLoadout( team, class, allowCopycat ) default: self giveWeapon( offhandSecondaryWeapon ); - if( loadOutOffhand == "smoke_grenade" ) - self setWeaponAmmoClip( offhandSecondaryWeapon, 1 ); - else if( loadOutOffhand == "flash_grenade" ) + if ( loadOutOffhand == "flash_grenade_mp" ) self setWeaponAmmoClip( offhandSecondaryWeapon, 2 ); - else if( loadOutOffhand == "concussion_grenade" ) + else if( loadOutOffhand == "concussion_grenade_mp" ) self setWeaponAmmoClip( offhandSecondaryWeapon, 2 ); else self setWeaponAmmoClip( offhandSecondaryWeapon, 1 ); @@ -1329,4 +1327,4 @@ isValidWeapon( refString ) assertMsg( "Replacing invalid weapon/attachment combo: " + refString ); return false; -} \ No newline at end of file +}