Skip to content
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion addons/main/script_mod.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#define VERSION_AR MAJOR,MINOR,PATCHLVL,BUILD

// MINIMAL required version for the Mod. Components can specify others..
#define REQUIRED_VERSION 2.20
#define REQUIRED_VERSION 2.22
#define REQUIRED_CBA_VERSION {3,18,4}

#ifndef COMPONENT_BEAUTIFIED
Expand Down
11 changes: 1 addition & 10 deletions addons/medical_engine/config.cpp
Original file line number Diff line number Diff line change
@@ -1,20 +1,13 @@
#include "script_component.hpp"

#pragma hemtt flag pe23_ignore_has_include
#if __has_include("\z\ace\addons\nomedical\script_component.hpp")
#define PATCH_SKIP "No Medical"
#endif

#ifdef PATCH_SKIP
ACE_PATCH_NOT_LOADED(ADDON,PATCH_SKIP)
#else
class CfgPatches {
class ADDON {
name = COMPONENT_NAME;
units[] = {};
weapons[] = {};
requiredVersion = REQUIRED_VERSION;
requiredAddons[] = {"ace_common"};
skipWhenAnyAddonPresent[] = {"ace_nomedical"}; // requires 2.22
author = ECSTRING(common,ACETeam);
authors[] = {"Glowbal","KoffeinFlummi","commy2"};
url = ECSTRING(main,URL);
Expand All @@ -28,5 +21,3 @@ class CfgPatches {
#include "CfgFunctions.hpp"
#include "CfgMoves.hpp"
#include "CfgVehicles.hpp"

#endif
11 changes: 1 addition & 10 deletions addons/realisticnames/config.cpp
Original file line number Diff line number Diff line change
@@ -1,20 +1,13 @@
#include "script_component.hpp"

#pragma hemtt flag pe23_ignore_has_include
#if __has_include("\z\ace\addons\norealisticnames\script_component.hpp")
#define PATCH_SKIP "No Realistic Names"
#endif

#ifdef PATCH_SKIP
ACE_PATCH_NOT_LOADED(ADDON,PATCH_SKIP)
#else
class CfgPatches {
class ADDON {
name = COMPONENT_NAME;
units[] = {};
weapons[] = {};
requiredVersion = REQUIRED_VERSION;
requiredAddons[] = {"ace_common", "ace_optics"};
skipWhenAnyAddonPresent[] = {"ace_norealisticnames"}; // requires 2.22
author = ECSTRING(common,ACETeam);
authors[] = {"KoffeinFlummi","TaoSensai","commy2"};
url = ECSTRING(main,URL);
Expand All @@ -28,5 +21,3 @@ class CfgPatches {
#include "CfgMagazines.hpp"
#include "CfgVehicles.hpp"
#include "CfgWeapons.hpp"

#endif
Loading