Skip to content

Commit 8bb83aa

Browse files
authored
Tools - Add requiredVersion to all sub configs (#1633)
1 parent 9220304 commit 8bb83aa

File tree

8 files changed

+20
-0
lines changed

8 files changed

+20
-0
lines changed
+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1+
#include "..\script_component.hpp"
2+
13
class CfgPatches {
24
class MRT_AccFncs {
35
units[] = {};
46
requiredAddons[] = {"cba_accessory"};
7+
requiredVersion = REQUIRED_VERSION;
58
};
69
};
+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1+
#include "..\script_component.hpp"
2+
13
class CfgPatches {
24
class asdg_jointmuzzles {
35
requiredAddons[] = {"cba_jr"};
46
units[] = {};
7+
requiredVersion = REQUIRED_VERSION;
58
};
69
};

addons/jr/asdg_jointrails/config.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1+
#include "..\script_component.hpp"
2+
13
class CfgPatches {
24
class asdg_jointrails {
35
requiredAddons[] = {"cba_jr"};
46
units[] = {};
7+
requiredVersion = REQUIRED_VERSION;
58
};
69
};

addons/ui/ui_helper/config.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@ class CfgPatches {
44
class SUBADDON {
55
requiredAddons[] = {"cba_ui"};
66
units[] = {};
7+
requiredVersion = REQUIRED_VERSION;
78
};
89
};
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1+
#include "..\script_component.hpp"
2+
13
class CfgPatches {
24
class CBA_Extended_EventHandlers {
35
requiredAddons[] = {"cba_xeh"};
46
units[] = {};
7+
requiredVersion = REQUIRED_VERSION;
58
};
69
};
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1+
#include "..\script_component.hpp"
2+
13
class CfgPatches {
24
class Extended_EventHandlers {
35
requiredAddons[] = {"cba_xeh"};
46
units[] = {};
7+
requiredVersion = REQUIRED_VERSION;
58
};
69
};

addons/xeh/ee/config.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1+
#include "..\script_component.hpp"
2+
13
class CfgPatches {
24
class cba_ee {
35
requiredAddons[] = {"cba_xeh"};
46
units[] = {};
7+
requiredVersion = REQUIRED_VERSION;
58
};
69
};

addons/xeh/xeh_a3/config.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@ class CfgPatches {
55
class SUBADDON {
66
requiredAddons[] = {"cba_xeh"};
77
units[] = {};
8+
requiredVersion = REQUIRED_VERSION;
89
};
910
};

0 commit comments

Comments
 (0)