Skip to content

Commit

Permalink
Tools - Add requiredVersion to all sub configs (#1633)
Browse files Browse the repository at this point in the history
  • Loading branch information
PabstMirror committed Dec 7, 2023
1 parent 9220304 commit 8bb83aa
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 0 deletions.
3 changes: 3 additions & 0 deletions addons/accessory/MRT_AccFncs/config.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
#include "..\script_component.hpp"

class CfgPatches {
class MRT_AccFncs {
units[] = {};
requiredAddons[] = {"cba_accessory"};
requiredVersion = REQUIRED_VERSION;
};
};
3 changes: 3 additions & 0 deletions addons/jr/asdg_jointmuzzles/config.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
#include "..\script_component.hpp"

class CfgPatches {
class asdg_jointmuzzles {
requiredAddons[] = {"cba_jr"};
units[] = {};
requiredVersion = REQUIRED_VERSION;
};
};
3 changes: 3 additions & 0 deletions addons/jr/asdg_jointrails/config.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
#include "..\script_component.hpp"

class CfgPatches {
class asdg_jointrails {
requiredAddons[] = {"cba_jr"};
units[] = {};
requiredVersion = REQUIRED_VERSION;
};
};
1 change: 1 addition & 0 deletions addons/ui/ui_helper/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@ class CfgPatches {
class SUBADDON {
requiredAddons[] = {"cba_ui"};
units[] = {};
requiredVersion = REQUIRED_VERSION;
};
};
3 changes: 3 additions & 0 deletions addons/xeh/CBA_Extended_EventHandlers/config.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
#include "..\script_component.hpp"

class CfgPatches {
class CBA_Extended_EventHandlers {
requiredAddons[] = {"cba_xeh"};
units[] = {};
requiredVersion = REQUIRED_VERSION;
};
};
3 changes: 3 additions & 0 deletions addons/xeh/Extended_EventHandlers/config.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
#include "..\script_component.hpp"

class CfgPatches {
class Extended_EventHandlers {
requiredAddons[] = {"cba_xeh"};
units[] = {};
requiredVersion = REQUIRED_VERSION;
};
};
3 changes: 3 additions & 0 deletions addons/xeh/ee/config.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
#include "..\script_component.hpp"

class CfgPatches {
class cba_ee {
requiredAddons[] = {"cba_xeh"};
units[] = {};
requiredVersion = REQUIRED_VERSION;
};
};
1 change: 1 addition & 0 deletions addons/xeh/xeh_a3/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ class CfgPatches {
class SUBADDON {
requiredAddons[] = {"cba_xeh"};
units[] = {};
requiredVersion = REQUIRED_VERSION;
};
};

0 comments on commit 8bb83aa

Please sign in to comment.