From 41ae48e5ea9222448d583bcc6a35b212ead1a541 Mon Sep 17 00:00:00 2001 From: matt Date: Wed, 1 May 2024 10:19:50 -0400 Subject: [PATCH] Adds open brace --- StarCatcherUnity/Assets/Scripts/Score.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/StarCatcherUnity/Assets/Scripts/Score.cs b/StarCatcherUnity/Assets/Scripts/Score.cs index bbf4aa8..4b1e42e 100644 --- a/StarCatcherUnity/Assets/Scripts/Score.cs +++ b/StarCatcherUnity/Assets/Scripts/Score.cs @@ -264,7 +264,7 @@ public void updateStarCaughtOnKeyPress() { { hasAnimationTriggered = new bool[]{true, true, true, true};; } - if (Input.GetKeyDown(KeyCode.F7)) // start over + if (Input.GetKeyDown(KeyCode.F7)) { // start over Start(); } }