diff --git a/addons/ballistics/CfgMagazineWells.hpp b/addons/ballistics/CfgMagazineWells.hpp index f0fa9b21b9..b8e5c80845 100644 --- a/addons/ballistics/CfgMagazineWells.hpp +++ b/addons/ballistics/CfgMagazineWells.hpp @@ -1,6 +1,5 @@ class CfgMagazineWells { - class CBA_65x39_MX { ADDON[] = { "ACE_30Rnd_65x39_caseless_mag_Tracer_Dim", @@ -14,7 +13,6 @@ class CfgMagazineWells { }; }; - class CBA_556x45_STANAG { ADDON[] = { "ACE_30Rnd_556x45_Stanag_M995_AP_mag", @@ -24,7 +22,6 @@ class CfgMagazineWells { }; }; - class CBA_762x51_M14 { ADDON[] = { "ACE_20Rnd_762x51_Mag_Tracer", @@ -86,11 +83,6 @@ class CfgMagazineWells { }; }; - - - - - //Missing in CBA //ACE_20Rnd_762x67_Mk248_Mod_0_Mag //ACE_20Rnd_762x67_Mk248_Mod_1_Mag @@ -107,7 +99,6 @@ class CfgMagazineWells { }; }; - //ACE_7Rnd_408_305gr_Mag class CBA_50BMG_M107 { diff --git a/addons/ballistics/config.cpp b/addons/ballistics/config.cpp index 0dc8289901..e78fb8f27f 100644 --- a/addons/ballistics/config.cpp +++ b/addons/ballistics/config.cpp @@ -17,6 +17,7 @@ class CfgPatches { #include "CfgEventHandlers.hpp" #include "CfgAmmo.hpp" #include "CfgMagazines.hpp" +#include "CfgMagazineWells.hpp" #include "CfgWeapons.hpp" #include "CfgVehicles.hpp" #include "ACE_Arsenal_Stats.hpp" diff --git a/addons/huntir/CfgMagazineWells.hpp b/addons/huntir/CfgMagazineWells.hpp new file mode 100644 index 0000000000..a846b485ee --- /dev/null +++ b/addons/huntir/CfgMagazineWells.hpp @@ -0,0 +1,5 @@ +class CfgMagazineWells { + class CBA_40mm_M203 { + ADDON[] = {"ACE_HuntIR_M203"} + }; +}; diff --git a/addons/huntir/config.cpp b/addons/huntir/config.cpp index 0adf9670a0..89992d5f52 100644 --- a/addons/huntir/config.cpp +++ b/addons/huntir/config.cpp @@ -18,6 +18,7 @@ class CfgPatches { #include "CfgCloudlets.hpp" #include "CfgAmmo.hpp" #include "CfgMagazines.hpp" +#include "CfgMagazineWells.hpp" #include "CfgVehicles.hpp" #include "CfgWeapons.hpp" #include "Dialog.hpp"