Public Beta — This Feedback Tracker is currently in public beta. For most issues, please visit feedback.bistudio.com
2
Issue Key
State
Access
Public
Project
Creator
Created
Jul 1, 2026
Views
25Attachments
No attachments
Platform
Game Version
Mission
Is it modded?
Description
SCR_CharacterControllerComponent::IsUsingBinoculars() method may cause "NULL pointer to instance exception" due to calling SCR_PlayerController::GetIsBinocularsZoomed() on SCR_PlayerController.s_pLocalPlayerController before the static member reference is initialized.
Vanilla script code checks for the use of binoculars by doing SCR_PlayerController.s_pLocalPlayerController && SCR_PlayerController.s_pLocalPlayerController.GetIsBinocularsZoomed() anyways, so the function can be replaced with
override bool IsUsingBinoculars()
{
return SCR_PlayerController.s_pLocalPlayerController && SCR_PlayerController.s_pLocalPlayerController.GetIsBinocularsZoomed();
}You are not signed in. Please sign in to see more details.
Issue Key
State
Access
Public
Project
Creator
Created
Jul 1, 2026
Views
25Attachments
No attachments