Changed tabs to 4 spaces

This commit is contained in:
Thomas Kooi
2015-01-18 20:09:19 +01:00
parent 86663e8a8e
commit 8dfdd11f3c
53 changed files with 747 additions and 735 deletions

View File

@ -17,15 +17,15 @@ _value = _this select 2;
_global = false;
if (count _this > 3) then {
_global = _this select 3;
_global = _this select 3;
} else {
_definedVariable = ([_variable] call FUNC(getDefinedVariableInfo));
if (count _definedVariable > 2) then {
_global = _definedVariable select 2;
};
_definedVariable = ([_variable] call FUNC(getDefinedVariableInfo));
if (count _definedVariable > 2) then {
_global = _definedVariable select 2;
};
};
if (!isNil "_value") exitwith {
_unit setvariable [_variable, _value, _global];
_unit setvariable [_variable, _value, _global];
};
_unit setvariable [_variable, nil, _global];