replace private with private keyword in first half of common

This commit is contained in:
commy2
2015-12-12 16:48:54 +01:00
parent e9a669b03b
commit 3d5ea74c7e
117 changed files with 470 additions and 741 deletions

View File

@ -23,12 +23,13 @@
params ["_name"];
private "_value";
_value = [];
scopeName "main";
{
if (_x select 0 == _name) exitWith {_value = _x};
if (_x select 0 == _name) then {
_x breakOut "main";
};
false
} count GVAR(settings);
_value
[]