Sergey Vergun
Sergey Vergun
Failed to binarize config with leading comma in array. items[] = {, "ItemGPS"};
Is there any reason why `excludeList` have different path representation? I think would be nice to have it consistent.
**When merged this pull request will:** - Implement https://github.com/michail-nikolaev/task-force-arma-3-radio/issues/1468 There is quite big chance of collisions so may be it is necessary to add uniqueness test for first element in...
**Arma 3 Version:** 1.84` (stable / rc / dev) **CBA Version:** `3.8.0` (stable / dev + commit hash) **Task Force Radio Version:** `0.9.12` (stable / dev + commit hash) **Description:**...
## Describe the bug ## If you press X(cross) to close warning window, it will proceed installation process. Could lead to unintentional data loss. Also seems like "Yes" button pre-selected....
**Describe the bug** Sorting of nested arrays is broken. Tested at 9fa0a3a3d4a0dbc7084c9e77a6b2b02bb24bd777 **To Reproduce** ```sqf private _pp = [[0,0,3,"Head"],[0,0,4,"Body"],[0,0,1.00125,"LeftArm"],[0,0,1.56359,"RightArm"],[0,0,1.1933,"LeftLeg"],[6.17301,2.05767,1.80874,"RightLeg"],[0,0,1,"#structural"]]; _pp sort false; _pp ``` `[[0,0,1,"#structural"],[6.17301,2.05767,1.80874,"RightLeg"],[0,0,1.1933,"LeftLeg"],[0,0,1.56359,"RightArm"],[0,0,1.00125,"LeftArm"],[0,0,4,"Body"],[0,0,3,"Head"]]` **Expected behavior** `[[6.17301,2.05767,1.80874,"RightLeg"],[0,0,4,"Body"],[0,0,3,"Head"],[0,0,1.56359,"RightArm"],[0,0,1.1933,"LeftLeg"],[0,0,1.00125,"LeftArm"],[0,0,1,"#structural"]]`
**Arma 3 Version:** `1.94` (stable) **CBA Version:** `3.11.1` (stable) **ACE3 Version:** `3.12.6` (stable) **ACEX Version:** `3.4.2` (stable) **Mods:** ``` - CBA_A3 - ace - acex ``` **Description:** - It is...
**HEMTT Version:** `0.7.6` manually build from Release tar. **Description:** There is no `addon` command available. How to create CBA style structure? If function is deprecated then update docs and README.md....
Some CBA functions pass variables as arguments. For example: Wrong: ```sqf [{CBA_missionTime > 0}, { _obj setPos _pos; }] call CBA_fnc_waitUntilAndExecute; ``` Correct: ```sqf [{CBA_missionTime > 0}, { params ["_obj",...