Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

XEH - Update configs for 1.98 (Oldman) #1311

Merged
merged 1 commit into from
Apr 14, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
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/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_Enoch_Loadorder", "A3_Data_F_Mod_Loadorder"};
requiredAddons[] = {"A3_Data_F_Oldman_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 1.94
#define REQUIRED_VERSION 1.98

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

// Oldman (1.98)
class O_UAV_01_F;
class O_UAV_01_Mine_F: O_UAV_01_F {
XEH_ENABLED;
};
class Land_MapBoard_01_Wall_F;
class Land_MapBoard_01_Wall_Syndikat_Tanoa_F: Land_MapBoard_01_Wall_F {
XEH_ENABLED;
};
class Land_MapBoard_F;
class Land_MapBoard_01_Tripod_Syndikat_Tanoa_F: Land_MapBoard_F {
XEH_ENABLED;
};
class Land_Map_blank_F;
class Land_MapBoard_01_Map_Syndikat_Tanoa_F: Land_Map_blank_F {
XEH_ENABLED;
};
};