From a968163f6e8de57169c1fb189b670c26d325eecd Mon Sep 17 00:00:00 2001 From: "a.gorbunov" <0alexgorbynov0@gmail.com> Date: Wed, 29 Nov 2023 13:17:14 +0300 Subject: [PATCH] Fix mistake. --- Assets/Scripts/LeaderboardController.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Assets/Scripts/LeaderboardController.cs b/Assets/Scripts/LeaderboardController.cs index 44a6cda9..9b8631bd 100644 --- a/Assets/Scripts/LeaderboardController.cs +++ b/Assets/Scripts/LeaderboardController.cs @@ -50,9 +50,9 @@ public class LeaderboardController : MonoBehaviour private void Update() { - if(Input.GetKeydown(KeyCode.J)) + if(Input.GetKeyDown(KeyCode.J)) _resetDaily = true; - if(Input.GetKeydown(KeyCode.K)) + if(Input.GetKeyDown(KeyCode.K)) _resetGlobal = true; }