fixed incorrectly enabled CUP support

This commit is contained in:
vbawol 2016-04-09 09:31:37 -05:00
parent 7be04e6493
commit edb52f8947

View File

@ -52,9 +52,9 @@ if (isNil "_instanceID") exitWith{
"Epoch: InstanceID missing!" call _abortAndError;
};
_activeAddons = activatedAddons;
EPOCH_modCUPWeaponsEnabled = "caweapons" in _activeAddons;
EPOCH_modCUPVehiclesEnabled = "cawheeled" in _activeAddons;
EPOCH_modCUPWeaponsEnabled = (getNumber (configFile >> "CfgPatches" >> "CUP_WheeledVehicles_Core" >> "requiredVersion") > 0);
EPOCH_modCUPVehiclesEnabled = (getNumber (configFile >> "CfgPatches" >> "CUP_Weapons_WeaponsCore" >> "requiredVersion") > 0);
if (EPOCH_modCUPWeaponsEnabled) then {
diag_log "Epoch: CUP Weapons detected";
};