ACE3/addons/compat_csla/CfgMagazines.hpp
Björn Dahlgren 1a3bce1a23
Add compatibility mod for CSLA CDLC (#8839)
* Add compatibility mod for CSLA CDLC

* Fix syntax issue

* Add open bolt property to machine guns

* Move to addons and update UBC

* Update addon.toml

* Update addons/compat_csla/CfgWeapons.hpp

Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com>

* Update addons/compat_csla/CfgMagazines.hpp

Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com>

* split explosives to sub config

* ifndef

* reduce range on stinger backblast (is soft-launch)

---------

Co-authored-by: PabstMirror <pabstmirror@gmail.com>
Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com>
2023-09-03 11:31:26 -05:00

23 lines
479 B
C++

class CfgMagazines {
class CSLA_UK59_50rnd_7_62vz59;
class CSLA_UK59_50rnd_7_62Sv59: CSLA_UK59_50rnd_7_62vz59 {
ace_isBelt = 1;
};
class US85_Magazine;
class US85_50Rnd_762x51: US85_Magazine {
ace_isBelt = 1;
};
class US85_20Rnd_762x51;
class US85_100Rnd_762x51: US85_20Rnd_762x51 {
ace_isBelt = 1;
};
class US85_30Rnd_556x45;
class US85_200Rnd_556x45: US85_30Rnd_556x45 {
ace_isBelt = 1;
};
};