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; }