From eaa23cc84fbe7086674e0213b34bc29bca95ad21 Mon Sep 17 00:00:00 2001 From: Fyuran Date: Sat, 6 Jun 2020 03:01:59 +0200 Subject: [PATCH] -fix to RHS USAF ACE Compatibility Mod Error - no entry 'bin\config.bin/CfgVehicles/RHS_CH47F/UserActions/OpenCargoDoor.displayName'. #7708 (#7711) --- AUTHORS.txt | 1 + optionals/compat_rhs_usf3/CfgVehicles.hpp | 3 ++- optionals/compat_rhs_usf3/config.cpp | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/AUTHORS.txt b/AUTHORS.txt index 83fe4d0fb7..8d27e0385c 100644 --- a/AUTHORS.txt +++ b/AUTHORS.txt @@ -159,3 +159,4 @@ Winter xrufix Zakant zGuba +Fyuran \ No newline at end of file diff --git a/optionals/compat_rhs_usf3/CfgVehicles.hpp b/optionals/compat_rhs_usf3/CfgVehicles.hpp index 5c68bb13c1..baffb89652 100644 --- a/optionals/compat_rhs_usf3/CfgVehicles.hpp +++ b/optionals/compat_rhs_usf3/CfgVehicles.hpp @@ -139,6 +139,7 @@ class CfgVehicles { class Heli_Transport_02_base_F; class RHS_CH_47F_base: Heli_Transport_02_base_F { EGVAR(refuel,fuelCapacity) = 3914; + class UserActions; }; class RHS_CH_47F: RHS_CH_47F_base { @@ -147,7 +148,7 @@ class CfgVehicles { EGVAR(fastroping,onCut) = QFUNC(onCut); EGVAR(fastroping,onPrepare) = QFUNC(onPrepare); - class UserActions { + class UserActions: UserActions { class OpenCargoDoor; class CloseCargoDoor: OpenCargoDoor { condition = QUOTE([ARR_2(this,'ramp_anim')] call FUNC(canCloseDoor)); diff --git a/optionals/compat_rhs_usf3/config.cpp b/optionals/compat_rhs_usf3/config.cpp index 246d63f5a0..cf347dea99 100644 --- a/optionals/compat_rhs_usf3/config.cpp +++ b/optionals/compat_rhs_usf3/config.cpp @@ -9,7 +9,7 @@ class CfgPatches { requiredVersion = REQUIRED_VERSION; requiredAddons[] = {"ace_explosives", "ace_javelin", "ace_rearm", "ace_refuel", "ace_repair", "ace_csw", "rhsusf_c_weapons", "rhsusf_c_troops", "rhsusf_c_m1a1", "rhsusf_c_m1a2", "RHS_US_A2_AirImport", "rhsusf_c_m109", "rhsusf_c_HEMTT_A4", "rhsusf_c_hmmwv", "rhsusf_c_rg33", "rhsusf_c_fmtv", "rhsusf_c_m113", "RHS_US_A2Port_Armor", "rhsusf_c_melb"}; author = ECSTRING(common,ACETeam); - authors[] = {"Ruthberg", "GitHawk", "BaerMitUmlaut"}; + authors[] = {"Ruthberg", "GitHawk", "BaerMitUmlaut", "Fyuran"}; url = ECSTRING(main,URL); VERSION_CONFIG; };