Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add more magazine wells #1020

Merged
merged 10 commits into from
Nov 9, 2018
18 changes: 15 additions & 3 deletions addons/jam/CfgWeapons.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,18 @@ class CfgWeapons {
};
};

class arifle_Katiba_Base_F : Rifle_Base_F {
magazineWell[] = {"CBA_65x39_Katiba"};
};

class arifle_ARX_base_F : Rifle_Base_F {
magazineWell[] = {"CBA_65x39_Katiba"};
};

class EBR_base_F: Rifle_Long_Base_F {
magazineWell[] = {"CBA_762x51_M14"};
};
class DMR_06_base_F: Rifle_Long_Base_F {
class DMR_03_base_F: Rifle_Long_Base_F {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This must be a mistake here. You replaced DMR_06_base_F with DMR_03_base_F

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

93af9ef This is the mistake. Commit message says it reverts the SIG 556. But it reverted the M14.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yep, has been fixed, thanks for spotting it!

magazineWell[] = {"CBA_762x51_M14"};
xrufix marked this conversation as resolved.
Show resolved Hide resolved
};
class arifle_SPAR_03_base_F : Rifle_Base_F {
Expand All @@ -46,10 +54,10 @@ class CfgWeapons {
};

class arifle_CTAR_base_F : Rifle_Base_F {
magazineWell[] = {"CBA_580x42_TYPE95"};
magazineWell[] = {"CBA_580x42_TYPE95", "CBA_580x42_TYPE95_XL"};
};
class arifle_CTARS_base_F : Rifle_Base_F {
magazineWell[] = {"CBA_580x42_TYPE95"};
magazineWell[] = {"CBA_580x42_TYPE95", "CBA_580x42_TYPE95_XL"};
xrufix marked this conversation as resolved.
Show resolved Hide resolved
};

class arifle_AK12_base_F : Rifle_Base_F {
Expand All @@ -71,6 +79,10 @@ class CfgWeapons {
magazineWell[] = {"CBA_65x39_Mk200"};
};

class LMG_Zafir_F : Rifle_Long_Base_F {
magazineWell[] = {"CBA_762x54R_LINKS"};
};

class launch_RPG7_F : Launcher_Base_F {
magazineWell[] = {"CBA_RPG7"};
};
Expand Down
7 changes: 7 additions & 0 deletions addons/jam/magwells_65x39.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,10 @@
"200Rnd_65x39_cased_Box_Tracer"
};
};

class CBA_65x39_Katiba {
BI_mags[] = {
"30Rnd_65x39_caseless_green",
"30Rnd_65x39_caseless_green_mag_Tracer"
};
};