From b912116539aeb6bac5c825e84f989058076f3267 Mon Sep 17 00:00:00 2001 From: Lncvrt Date: Wed, 20 Aug 2025 18:24:23 -0700 Subject: [PATCH] Increment coins by 10 instead of 1 so getting coins is easier --- Assets/Scripts/GamePlayer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Scripts/GamePlayer.cs b/Assets/Scripts/GamePlayer.cs index 8c1ca3d..f6fbd2b 100644 --- a/Assets/Scripts/GamePlayer.cs +++ b/Assets/Scripts/GamePlayer.cs @@ -598,7 +598,7 @@ public class GamePlayer : MonoBehaviour AudioSource.PlayClipAtPoint(Resources.Load("Sounds/CoinCollect"), Camera.main.transform.position, 0.35f * BazookaManager.Instance.GetSettingSFXVolume()); Destroy(coinBerry); totalCoinBerries++; - totalCoins++; + totalCoins += 10; UpdateStats(0, 0); } if (speedyLeft > 0)