diff --git a/Assets/Scripts/InputManager.cs b/Assets/Scripts/InputManager.cs index 844f1ed0..e4372189 100644 --- a/Assets/Scripts/InputManager.cs +++ b/Assets/Scripts/InputManager.cs @@ -33,11 +33,6 @@ public class InputManager : MonoBehaviour void Awake() { - if (_instance != null && _instance != this) - { - Destroy(gameObject); - return; - } _instance = this; DontDestroyOnLoad(gameObject); playerInput = GetComponent(); diff --git a/Assets/Scripts/PuzzleManager.cs b/Assets/Scripts/PuzzleManager.cs index ac1ae759..2d183128 100644 --- a/Assets/Scripts/PuzzleManager.cs +++ b/Assets/Scripts/PuzzleManager.cs @@ -33,11 +33,6 @@ public class PuzzleManager : MonoBehaviour void Awake() { - if (_instance != null && _instance != this) - { - Destroy(gameObject); - return; - } _instance = this; DontDestroyOnLoad(gameObject); }