@@ -31,15 +31,15 @@ private _vehicles = (vehicles select { _x call FUNC(isValidVehicle) });
31
31
if (_units isNotEqualTo []) then {
32
32
{
33
33
if (isNull objectParent _x ) then { // Infantry
34
- private _iconId = toLower format [QGVAR(IconId_Player_% 1 _% 2 ), _x , (group _x )];
34
+ private _iconId = toLowerANSI format [QGVAR(IconId_Player_% 1 _% 2 ), _x , (group _x )];
35
35
if ! (_iconId in GVAR(processedIcons)) then {
36
36
GVAR(processedIcons) pushBack _iconId ;
37
37
// DUMP("UNIT ICON ADDED: " + _iconId);
38
38
[_x , _iconId ] call FUNC(addUnitToTracker);
39
39
};
40
40
41
41
if (alive _x && { leader _x == _x }) then {
42
- _iconId = toLower format [QGVAR(IconId_Group_% 1 _% 2 ), group _x , _x ];
42
+ _iconId = toLowerANSI format [QGVAR(IconId_Group_% 1 _% 2 ), group _x , _x ];
43
43
if ! (_iconId in GVAR(processedIcons)) then {
44
44
GVAR(processedIcons) pushBack _iconId ;
45
45
// DUMP("GROUP ICON ADDED: " + _iconId);
@@ -52,7 +52,7 @@ if (_units isNotEqualTo []) then {
52
52
private _inGroup = {
53
53
if (leader _x == _x ) then {
54
54
_nbrGroups = _nbrGroups + 1 ;
55
- private _iconId = toLower format [QGVAR(IconId_Group_% 1 _% 2 _% 3 ), group _x , _vehicle , _nbrGroups ];
55
+ private _iconId = toLowerANSI format [QGVAR(IconId_Group_% 1 _% 2 _% 3 ), group _x , _vehicle , _nbrGroups ];
56
56
if ! (_iconId in GVAR(processedIcons)) then {
57
57
GVAR(processedIcons) pushBack _iconId ;
58
58
// DUMP("GROUP ICON ADDED: " + _iconId);
@@ -63,7 +63,7 @@ if (_units isNotEqualTo []) then {
63
63
} count (crew _vehicle );
64
64
_inGroup = _inGroup > 0 ;
65
65
if (! isNull _vehicle ) then {
66
- private _iconId = toLower format [QGVAR(IconId_Vehicle_% 1 ), _vehicle ];
66
+ private _iconId = toLowerANSI format [QGVAR(IconId_Vehicle_% 1 ), _vehicle ];
67
67
if ! (_iconId in GVAR(processedIcons)) then {
68
68
GVAR(processedIcons) pushBack _iconId ;
69
69
// DUMP("VEHICLE ADDED: " + _iconId);
@@ -76,7 +76,7 @@ if (_units isNotEqualTo []) then {
76
76
77
77
if (_vehicles isNotEqualTo []) then {
78
78
{
79
- private _iconId = toLower format [QGVAR(IconId_Vehicle_% 1 ), _x ];
79
+ private _iconId = toLowerANSI format [QGVAR(IconId_Vehicle_% 1 ), _x ];
80
80
if (
81
81
! (_iconId in GVAR(processedIcons))
82
82
&& (locked _x ) <= 1
0 commit comments