Skip to content

Commit

Permalink
Merge pull request #1420 from CBATeam/aowXEH
Browse files Browse the repository at this point in the history
XEH - Fix missing XEH on AoW objects (2.02)
  • Loading branch information
commy2 committed Feb 24, 2021
2 parents 609d85e + 25e4f56 commit 7f369a7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion addons/common/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class CfgPatches {
units[] = {};
weapons[] = {};
requiredVersion = REQUIRED_VERSION;
requiredAddons[] = {"A3_Data_F_Oldman_Loadorder", "A3_Data_F_Mod_Loadorder"};
requiredAddons[] = {"A3_Data_F_AoW_Loadorder", "A3_Data_F_Mod_Loadorder"};
author = "$STR_CBA_Author";
authors[] = {"Spooner","Sickboy","Rocko"};
url = "$STR_CBA_URL";
Expand Down
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.00
#define REQUIRED_VERSION 2.02

/*
// Defined DEBUG_MODE_NORMAL in a few CBA_fncs to prevent looped logging :)
Expand Down
5 changes: 5 additions & 0 deletions addons/xeh/CfgVehicles.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -397,4 +397,9 @@ class CfgVehicles {
class Land_MapBoard_01_Map_Syndikat_Tanoa_F: Land_Map_blank_F {
XEH_ENABLED;
};

// AOW (2.02)
class GalleryDioramaUnit_01_base_F: Items_base_F {
XEH_ENABLED;
};
};

0 comments on commit 7f369a7

Please sign in to comment.