Fix right panel item count not updating properly in certain scenarios

This commit is contained in:
Josuan Albin 2017-11-08 16:28:16 +01:00
parent 25687fc7bc
commit ee393b7af2

View File

@ -297,15 +297,15 @@ if (GVAR(currentLeftPanel) in [IDC_buttonUniform, IDC_buttonVest, IDC_buttonBack
private _container = switch (GVAR(currentLeftPanel)) do { private _container = switch (GVAR(currentLeftPanel)) do {
case IDC_buttonUniform : { case IDC_buttonUniform : {
(_display displayCtrl IDC_loadIndicatorBar) progressSetPosition (loadUniform GVAR(center)); (_display displayCtrl IDC_loadIndicatorBar) progressSetPosition (loadUniform GVAR(center));
GVAR(currentItems) select 15 uniformItems GVAR(center)
}; };
case IDC_buttonVest : { case IDC_buttonVest : {
(_display displayCtrl IDC_loadIndicatorBar) progressSetPosition (loadVest GVAR(center)); (_display displayCtrl IDC_loadIndicatorBar) progressSetPosition (loadVest GVAR(center));
GVAR(currentItems) select 16 vestItems GVAR(center)
}; };
case IDC_buttonBackpack : { case IDC_buttonBackpack : {
(_display displayCtrl IDC_loadIndicatorBar) progressSetPosition (loadBackpack GVAR(center)); (_display displayCtrl IDC_loadIndicatorBar) progressSetPosition (loadBackpack GVAR(center));
GVAR(currentItems) select 17 backpackItems GVAR(center)
}; };
}; };