Skip to content

Commit

Permalink
move to common/preStart
Browse files Browse the repository at this point in the history
  • Loading branch information
PabstMirror committed Aug 5, 2024
1 parent 2fe1509 commit 6ce2ac9
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions addons/common/XEH_preStart.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,23 @@ uiNamespace setVariable [QGVAR(addonCache), createHashMap];

// Cache for FUNC(getConfigName)
uiNamespace setVariable [QGVAR(configNames), createHashMap];

//Add warnings for missing compat PBOs
GVAR(isModLoadedCache) = createHashMap;
{
WARNING_2("Weapon Mod [%1] missing ace compat pbo [%2]",_modPBO,_compatPBO);
};
} forEach [

Check failure on line 24 in addons/common/XEH_preStart.sqf

View workflow job for this annotation

GitHub Actions / build

unparseable syntax

unparseable syntax
["CUP_Creatures_People_LoadOrder","ace_compat_cup_units"],
["CUP_Vehicles_LoadOrder","ace_compat_cup_vehicles"],
["CUP_Weapons_LoadOrder","ace_compat_cup_weapons"],
["r3f_armes_c","ace_compat_r3f"],
["RF_Data_Loadorder","ace_compat_rf"],
["RH_acc","ace_compat_rh_acc"],
["RH_de_cfg","ace_compat_rh_de"],
["RH_m4_cfg","ace_compat_rh_m4"],
["RH_PDW","ace_compat_rh_pdw"],
["RKSL_PMII","ace_compat_rksl_pm_ii"],
["iansky_opt","ace_compat_sma3_iansky"],
["R3F_Armes","ace_compat_r3f"]
];

0 comments on commit 6ce2ac9

Please sign in to comment.