Fix mistake.

This commit is contained in:
a.gorbunov 2023-11-29 13:17:14 +03:00
parent 535112b529
commit a968163f6e
1 changed files with 2 additions and 2 deletions

View File

@ -50,9 +50,9 @@ public class LeaderboardController : MonoBehaviour
private void Update() private void Update()
{ {
if(Input.GetKeydown(KeyCode.J)) if(Input.GetKeyDown(KeyCode.J))
_resetDaily = true; _resetDaily = true;
if(Input.GetKeydown(KeyCode.K)) if(Input.GetKeyDown(KeyCode.K))
_resetGlobal = true; _resetGlobal = true;
} }