fixed type error on callsign function

This commit is contained in:
Valmo Trindade
2025-02-01 04:01:34 -03:00
parent a1c34c546a
commit f64b2307a7

View File

@@ -24,9 +24,9 @@ if (unitIsUAV _unit) then {
_callsign = getText (configFile >> "CfgVehicles" >> typeOf _unit >> "displayName");
if (isUAVConnected _unit) then {
_callsign = _callsign + "[ON]";
_callsign = (_callsign) + "[ON]";
} else {
_callsign = _callsign + "[OFF]";
_callsign = (_callsign) + "[OFF]";
}
};