Fix sharedLoadouts check

This commit is contained in:
Josuan Albin
2017-11-03 16:15:24 +01:00
parent 62f79f109d
commit c4002ed8c2

View File

@ -24,7 +24,7 @@ if !(GVAR(allowDefaultLoadouts)) then {
_buttonDefaultLoadoutsCtrl ctrlCommit 0;
};
if !(GVAR(allowSharedLoadouts) || {isMultiplayer}) then {
if !(GVAR(allowSharedLoadouts) && {isMultiplayer}) then {
private _buttonShareLoadoutsCtrl = _display displayCtrl IDC_buttonSharedLoadouts;
_buttonShareLoadoutsCtrl ctrlEnable false;
_buttonShareLoadoutsCtrl ctrlCommit 0;