Skip to content

Commit

Permalink
fix personal callsign
Browse files Browse the repository at this point in the history
  • Loading branch information
mgkid3310 committed Apr 28, 2021
1 parent ea9e9fe commit 10171e0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion addons/atc/functions/fnc_createVehicleMarker.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@ private _return = [];
_callsign = name driver _vehicle;
};
default {
_callsign = driver _vehicle getVariable [QGVAR(perosnalCallsign), name driver _vehicle];
_callsign = driver _vehicle getVariable [QGVAR(personalCallsign), name driver _vehicle];
if (_callsign isEqualTo "") then {
_callsign = name driver _vehicle;
};
};
};
};
Expand Down

0 comments on commit 10171e0

Please sign in to comment.