diff --git a/Assets/Escape Room Engine/Engine/Scripts/Modules/PuzzleState.cs b/Assets/Escape Room Engine/Engine/Scripts/Modules/PuzzleState.cs index 99cfbde..4cfb269 100644 --- a/Assets/Escape Room Engine/Engine/Scripts/Modules/PuzzleState.cs +++ b/Assets/Escape Room Engine/Engine/Scripts/Modules/PuzzleState.cs @@ -83,7 +83,10 @@ namespace Escape_Room_Engine.Engine.Scripts.Modules [Button("Trigger Wrong Input", EButtonEnableMode.Playmode)] public void WrongInput() { - OnPuzzleEvent(PuzzleEventType.WrongInput); + if (!Solved) + { + OnPuzzleEvent(PuzzleEventType.WrongInput); + } } } } \ No newline at end of file