From 3b1ea3402b5cb4adfd5c340ebbbd35ca6c1cd00d Mon Sep 17 00:00:00 2001 From: Gregory Campbell Date: Mon, 8 Jun 2020 23:18:50 -0400 Subject: [PATCH] Halved the time since 60 seconds was way too long --- Assets/Scripts/GameScript.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Scripts/GameScript.cs b/Assets/Scripts/GameScript.cs index a70622c..80a8792 100644 --- a/Assets/Scripts/GameScript.cs +++ b/Assets/Scripts/GameScript.cs @@ -17,7 +17,7 @@ public class GameScript : MonoBehaviour private bool clicked = false; private bool gameOver = false; private int objectsPolished = 0; - private int timeLimit = 60; + private int timeLimit = 30; private float timer = 0.0f; private GameObject pickedUpItem;