Skip to content

Commit da6f65f

Browse files
authored
Common - Update class cases (#11505)
1 parent b770844 commit da6f65f

7 files changed

Lines changed: 14 additions & 14 deletions

File tree

addons/ballistics/CfgVehicles.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ class CfgVehicles {
44
class ACE_TargetWall: Sign_F {
55
author = ECSTRING(common,ACETeam);
66
scope = 0;
7-
class Eventhandlers {
7+
class EventHandlers {
88
init = QUOTE(call COMPILE_FILE(scripts\initTargetWall));
99
//hitPart = "systemChat str _this";
1010
};

addons/compat_r3f/CfgMagazines.hpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
class CfgMagazines {
2-
class CA_magazine;
3-
class R3F_securite_mag: CA_magazine {
2+
class CA_Magazine;
3+
class R3F_securite_mag: CA_Magazine {
44
scope = 1; // Game Update 1.84: "Tweaked: Magazines can now be hidden in Virtual Arsenal by setting their scope to 1", R3F default value 2
55
};
6-
class R3F_15Rnd_9x19_PAMAS: CA_magazine {
6+
class R3F_15Rnd_9x19_PAMAS: CA_Magazine {
77
initSpeed = 368; // according with the ACE_ammoTempMuzzleVelocityShifts at the normal conditions (15°C), R3F default value 350
88
};
9-
class R3F_15Rnd_9x19_HKUSP: CA_magazine {
9+
class R3F_15Rnd_9x19_HKUSP: CA_Magazine {
1010
initSpeed = 363; // according with the ACE_ammoTempMuzzleVelocityShifts at the normal conditions (15°C), R3F default value 350
1111
};
12-
class R3F_17Rnd_9x19_G17: CA_magazine {
12+
class R3F_17Rnd_9x19_G17: CA_Magazine {
1313
initSpeed = 355; // according with the ACE_ammoTempMuzzleVelocityShifts at the normal conditions (15°C), R3F default value 350
1414
};
15-
class R3F_5Rnd_127x99_TAC50: CA_magazine { // AtragMx GunList: R3F TAC50 AMAX
15+
class R3F_5Rnd_127x99_TAC50: CA_Magazine { // AtragMx GunList: R3F TAC50 AMAX
1616
initSpeed = 823; // 2700 fps according with the McMillan Tactical Products specification and the ACE_ammoTempMuzzleVelocityShifts at the normal conditions (15°C), R3F default value 820
1717
};
1818
};

addons/compat_rhs_afrf3/CfgMagazines.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class cfgMagazines {
1+
class CfgMagazines {
22
class VehicleMagazine;
33
class rhs_30Rnd_545x39_7N6_AK;
44

addons/compat_rhs_usf3/CfgMagazines.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class cfgMagazines {
1+
class CfgMagazines {
22
class CA_Magazine;
33
class VehicleMagazine;
44
class rhsusf_mag_40Rnd_46x30_AP: CA_Magazine {

addons/huntir/CfgAmmo.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ class CfgAmmo {
55
lightColor[] = {0, 0, 0, 0};
66
smokeColor[] = {0, 0, 0, 0};
77
timeToLive = 6;
8-
class Eventhandlers {
8+
class EventHandlers {
99
fired = QUOTE(call FUNC(handleFired));
1010
};
1111
};

addons/missile_clgp/CfgAmmo.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class CfgAmmo {
2222
muzzleEffect = "";
2323
airFriction = 0;
2424

25-
class Eventhandlers {
25+
class EventHandlers {
2626
fired = QUOTE(call FUNC(submunition_ammoFired));
2727
};
2828
class CamShakeFire {
@@ -110,7 +110,7 @@ class CfgAmmo {
110110
submunitionCount = 1;
111111
submunitionConeAngle = 0;
112112
triggerTime = 0.1;
113-
class Eventhandlers {
113+
class EventHandlers {
114114
fired = QUOTE(call FUNC(submunition_ammoFired));
115115
};
116116
};

optionals/nocrosshair/CfgWeaponCursors.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#define EMPTY_TEXTURE(weapon) \
2-
class weapon: default { \
2+
class weapon: Default { \
33
texture = ""; \
44
}
55

66
class CfgWeaponCursors {
7-
class default;
7+
class Default;
88
EMPTY_TEXTURE(arifle);
99
EMPTY_TEXTURE(mg);
1010
EMPTY_TEXTURE(srifle);

0 commit comments

Comments
 (0)