diff --git a/CVRGizmos/CVRGizmoManager.cs b/CVRGizmos/CVRGizmoManager.cs index b825d45..fd03eb0 100644 --- a/CVRGizmos/CVRGizmoManager.cs +++ b/CVRGizmos/CVRGizmoManager.cs @@ -30,7 +30,7 @@ namespace NAK.CVRGizmos typeof(CVRGizmos_CapsuleCollider), }; - void Start() + private void Start() { CVRGizmoManager.Instance = this; managed = new MonoBehaviour[GizmoTypes.Count()]; diff --git a/CVRGizmos/Main.cs b/CVRGizmos/Main.cs index 8ba7414..57da2b8 100644 --- a/CVRGizmos/Main.cs +++ b/CVRGizmos/Main.cs @@ -22,7 +22,7 @@ public class CVRGizmos : MelonMod MelonLoader.MelonCoroutines.Start(WaitForLocalPlayer()); } - IEnumerator WaitForLocalPlayer() + private IEnumerator WaitForLocalPlayer() { while (PlayerSetup.Instance == null) yield return null;