Skip to content

Commit

Permalink
fix position target
Browse files Browse the repository at this point in the history
  • Loading branch information
McDiod committed May 7, 2017
1 parent b6f28b8 commit 22c5846
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion functions/fn_updateReception.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

params ["_unit","_target","_updateInterval","_receptionCtrl","_receptionCode"];

private _reception = if (isNull _target) then {0} else {
private _reception = if (_target isEqualType objNull && {isNull _target}) then {0} else {
[_unit,_target,_updateInterval] call _receptionCode;
};

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "grad-gpstracker",
"description": "GPS Tracker dialog with a basic API.",
"version": "0.0.1",
"version": "0.0.2",
"author": "McDiod"
}

0 comments on commit 22c5846

Please sign in to comment.