Also check if late initialized

This commit is contained in:
Noah Pilarski 2024-06-04 16:29:46 -04:00
parent c998a92cec
commit 3069130c5c

View File

@ -108,7 +108,7 @@ namespace NewHorizons.Components.Props
public void SetActive(bool active)
{
if (CloseEyes && _playerDoneAwake)
if (CloseEyes && _playerDoneAwake && LateInitializerManager.isDoneInitializing)
{
Delay.StartCoroutine(Coroutine(active));
}