Fix spectator map click not changing cam pos

Fix #3842
PFEH FUNC(handleCamera) will set camera position using GVAR(camPos)
This commit is contained in:
PabstMirror 2016-07-23 14:07:03 -05:00
parent fa176bdea7
commit 9cc0e64b46

View File

@ -60,7 +60,7 @@ GVAR(camZoom) = (_zoom min 2) max 0.01;
// Apply if camera exists
if (GVAR(isSet)) then {
GVAR(freeCamera) setPosATL _position;
GVAR(camPos) = (ATLtoASL _position); // Camera position will be updated in FUNC(handleCamera)
[_mode,_unit,_vision] call FUNC(transitionCamera);
} else {
GVAR(camMode) = _mode;