mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
286f64480c
* weight * Update CfgWeapons.hpp * Update addons/medical_treatment/CfgWeapons.hpp Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com> --------- Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com>
14 lines
438 B
C++
14 lines
438 B
C++
class CfgMagazines {
|
|
class CA_Magazine;
|
|
class ACE_SpareBarrel: CA_Magazine {
|
|
displayName = CSTRING(SpareBarrelName);
|
|
author = ECSTRING(common,ACETeam);
|
|
scope = 2; // Allows it to show up in Virtual Arsenal in 1.64
|
|
descriptionshort = CSTRING(SpareBarrelDescription);
|
|
picture = QUOTE(PATHTOF(UI\spare_barrel_ca.paa));
|
|
count = 1;
|
|
mass = 25;
|
|
ACE_isUnique = 1;
|
|
};
|
|
};
|