Use number instead of string for weapon slot type in configs

This is consistent with the rest of the weapon configs.

It also avoids issues with using isNumber or getNumber to check slot
type in scripts.
This commit is contained in:
ebaydayz
2016-09-18 14:58:35 -04:00
parent 9ec514cab1
commit 61f38fc259
9 changed files with 10 additions and 10 deletions

View File

@@ -63,10 +63,10 @@ class M249_Holo_DZ : M249_CCO_DZ
class M249_EP1;
class M249_EP1_DZ:M249_EP1 { //Iron sight with shorter stock (slightly different look from M249_DZ) can also fire MG36 mags
type = "1";
type = WeaponSlotPrimary;
};
class M249_m145_EP1;
class M249_m145_EP1_DZE:M249_m145_EP1 {
type = "1";
type = WeaponSlotPrimary;
};