Skip to content

Commit

Permalink
Fix undefined variable in selectPosition function (#657)
Browse files Browse the repository at this point in the history
  • Loading branch information
sharplol authored Nov 20, 2021
1 parent df3175e commit e1fff80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/common/functions/fnc_selectPosition.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ params [

// Exit with failure if an instance is already active
if (GVAR(selectPositionActive)) exitWith {
[false, _objects, [0, 0, 0], _args, false, false, false] call _code;
[false, _objects, [0, 0, 0], _args, false, false, false] call _function;
};

GVAR(selectPositionActive) = true;
Expand Down

0 comments on commit e1fff80

Please sign in to comment.