mirror of
https://github.com/valmojr/armatak.git
synced 2026-06-13 23:03:29 +00:00
fixed type error on callsign function
This commit is contained in:
@@ -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]";
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user