From eca7e130dd3e7eb62a4d24b3a3afe21fbdb7beac Mon Sep 17 00:00:00 2001 From: OverflowNarhoym Date: Tue, 22 Feb 2022 19:58:50 +0100 Subject: [PATCH] Removed exception on OnInteract method --- Assets/Scripts/Player/PlayerController.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Assets/Scripts/Player/PlayerController.cs b/Assets/Scripts/Player/PlayerController.cs index 6ef7066..8568dd8 100644 --- a/Assets/Scripts/Player/PlayerController.cs +++ b/Assets/Scripts/Player/PlayerController.cs @@ -228,7 +228,8 @@ namespace Player public void OnInteract(InputAction.CallbackContext context) { if (_playerInteractableTrigger.IsCollided) - throw new NotImplementedException(); + { + } } public void OnClimb(InputAction.CallbackContext context)