mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Fix zeus cargo display for empty vehicles
The cargo wasn't displaying for empty vehicles because they use a different display.
This commit is contained in:
parent
d90d5a7ac1
commit
4cbded1811
@ -118,11 +118,7 @@ class CfgVehicles {
|
||||
};
|
||||
class GVAR(moduleGlobalSetSkill): GVAR(moduleBase) {
|
||||
displayName = "Global AI Skill";
|
||||
// icon = "\a3\Modules_F_Curator\Data\iconEndMission_ca.paa";
|
||||
// portrait = "\a3\Modules_F_Curator\Data\portraitEndMission_ca.paa";
|
||||
curatorInfoType = QGVAR(RscGlobalSetSkill);
|
||||
class Arguments {};
|
||||
class Attributes {};//todo, make it a threden as well
|
||||
};
|
||||
class GVAR(moduleSetMedic): GVAR(moduleBase) {
|
||||
curatorCanAttach = 1;
|
||||
|
@ -3,12 +3,14 @@
|
||||
params ["_control"];
|
||||
TRACE_1("params",_control);
|
||||
|
||||
private _veh = missionNamespace getVariable ["BIS_fnc_initCuratorAttributes_target", objnull];
|
||||
private _veh = GETMVAR(BIS_fnc_initCuratorAttributes_target,objnull);
|
||||
TRACE_1("",_veh);
|
||||
|
||||
private _loaded = _veh getVariable [QEGVAR(cargo,loaded), []];
|
||||
TRACE_1("",_loaded);
|
||||
|
||||
lbClear ((ctrlParent _control) displayCtrl 80086);
|
||||
|
||||
{
|
||||
((ctrlParent _control) displayCtrl 80086) lbAdd (str _x);
|
||||
} forEach _loaded;
|
||||
|
@ -193,7 +193,7 @@ class GVAR(cargoAttribute): RscControlsGroupNoScrollbars {
|
||||
x = W_PART(10);
|
||||
y = 0;
|
||||
w = W_PART(16);
|
||||
h = H_PART(2.5);
|
||||
h = H_PART(3);
|
||||
colorBackground[] = {1,1,1,0.1};
|
||||
};
|
||||
class Cargo: RscListBox {
|
||||
@ -211,7 +211,17 @@ class RscDisplayAttributesVehicle: RscDisplayAttributes {
|
||||
class Controls: Controls {
|
||||
class Content: Content {
|
||||
class Controls: controls {
|
||||
class Cargo: GVAR(cargoAttribute) { };
|
||||
class ace_cargo: GVAR(cargoAttribute) { };
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class RscDisplayAttributesVehicleEmpty: RscDisplayAttributes {
|
||||
class Controls: Controls {
|
||||
class Content: Content {
|
||||
class Controls: controls {
|
||||
class ace_cargo: GVAR(cargoAttribute) { };
|
||||
};
|
||||
};
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user