Skip to content

Commit

Permalink
remove superfluous parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
commy2 committed Feb 25, 2021
1 parent 68565c1 commit bcebe93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/network/XEH_preInit.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ADDON = false;
[QGVAR(validateLoadout), {
params ["_unit", "_loadout"];

if (GVAR(loadoutValidation) > 0 && {(getUnitLoadout _unit) isNotEqualTo _loadout}) then {
if (GVAR(loadoutValidation) > 0 && {getUnitLoadout _unit isNotEqualTo _loadout}) then {
_unit setUnitLoadout _loadout;
};
}] call CBA_fnc_addEventHandler;
Expand Down

0 comments on commit bcebe93

Please sign in to comment.