From 97ff3b4e82ac84f9aa47e555b3b0ded9a77471ba Mon Sep 17 00:00:00 2001 From: Lncvrt Date: Wed, 11 Feb 2026 19:34:58 -0700 Subject: [PATCH] Make golden berry give you 4 points --- Assets/Scripts/CustomGamePlayer.cs | 2 +- Assets/Scripts/GamePlayer.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Assets/Scripts/CustomGamePlayer.cs b/Assets/Scripts/CustomGamePlayer.cs index 7c83fcd..28ca58f 100644 --- a/Assets/Scripts/CustomGamePlayer.cs +++ b/Assets/Scripts/CustomGamePlayer.cs @@ -840,7 +840,7 @@ public class CustomGamePlayer : MonoBehaviour speedyLeft = 0f; antiLeft = 0f; goldenLeft = 10f; - UpdateStats(0); + UpdateStats(4); } void DoNothingBerry(GameObject berry) diff --git a/Assets/Scripts/GamePlayer.cs b/Assets/Scripts/GamePlayer.cs index f1c08f7..d2f08d8 100644 --- a/Assets/Scripts/GamePlayer.cs +++ b/Assets/Scripts/GamePlayer.cs @@ -870,6 +870,6 @@ public class GamePlayer : MonoBehaviour speedyLeft = 0f; antiLeft = 0f; goldenLeft = 10f; - UpdateStats(0, 0); + UpdateStats(4, 0); } } \ No newline at end of file