mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Fix isFeatureCameraActive for Spectator enhacements (#5269)
* fix isFeatureCameraActive for spec
ace_spectator_camera was removed in 77c2b99ee5
.
spectator module initializes three separate cameras instead, of which for example ace_spectator_freeCamera can be used to check if spec mode is active
* use ace_spectator_isSet to check for spec mode
This commit is contained in:
parent
6eaba8ddaf
commit
e770f669b6
@ -25,7 +25,7 @@
|
|||||||
|
|
||||||
!(
|
!(
|
||||||
isNull curatorCamera && // Curator
|
isNull curatorCamera && // Curator
|
||||||
{isNull (GETMVAR(EGVAR(spectator,camera),objNull))} && // ACE Spectator
|
{GETMVAR(EGVAR(spectator,isSet),false)} && // ACE Spectator
|
||||||
{isNull (GETUVAR(BIS_fnc_arsenal_cam, objNull))} && // Arsenal camera
|
{isNull (GETUVAR(BIS_fnc_arsenal_cam, objNull))} && // Arsenal camera
|
||||||
{isNull (GETMVAR(BIS_fnc_establishingShot_fakeUAV, objNull))} && // Establishing shot camera
|
{isNull (GETMVAR(BIS_fnc_establishingShot_fakeUAV, objNull))} && // Establishing shot camera
|
||||||
{isNull (GETMVAR(BIS_fnc_camera_cam, objNull))} && // Splendid camera
|
{isNull (GETMVAR(BIS_fnc_camera_cam, objNull))} && // Splendid camera
|
||||||
|
Loading…
Reference in New Issue
Block a user