Utilize isNotEqualTo (#7929)

* Utilize isNotEqualTo

* undo changes to some files

* redo some changes, fix based on @Vdauphin 's comment

* fix validator issues

Co-authored-by: PabstMirror <pabstmirror@gmail.com>
This commit is contained in:
Neviothr
2021-02-27 19:05:05 +02:00
committed by GitHub
parent 5a36d1a771
commit 75f7ed7532
117 changed files with 186 additions and 186 deletions

View File

@ -36,7 +36,7 @@ private _menuInSelectedPath = true;
if (_forEachIndex >= (count GVAR(menuDepthPath))) exitWith {
_menuInSelectedPath = false;
};
if !(_x isEqualTo (GVAR(menuDepthPath) select _forEachIndex)) exitWith {
if (_x isNotEqualTo (GVAR(menuDepthPath) select _forEachIndex)) exitWith {
_menuInSelectedPath = false;
};
} forEach _path;