From 56ab98858b192b6fcb9869fd8ef8a0b16418ee2e Mon Sep 17 00:00:00 2001 From: Lncvrt Date: Fri, 13 Feb 2026 20:39:52 -0700 Subject: [PATCH] Add Golden Berry to stats menu on pause popup (normal mode) --- Assets/Scripts/GamePlayerPauseMenu.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Assets/Scripts/GamePlayerPauseMenu.cs b/Assets/Scripts/GamePlayerPauseMenu.cs index 471d678..79857b3 100644 --- a/Assets/Scripts/GamePlayerPauseMenu.cs +++ b/Assets/Scripts/GamePlayerPauseMenu.cs @@ -91,6 +91,7 @@ public class GamePlayerPauseMenu : MonoBehaviour text.AppendLine("Total Speedy Berries: " + Tools.FormatWithCommas(BazookaManager.Instance.GetGameStoreTotalSpeedyBerries())); text.AppendLine("Total Random Berries: " + Tools.FormatWithCommas(BazookaManager.Instance.GetGameStoreTotalRandomBerries())); text.AppendLine("Total Anti Berries: " + Tools.FormatWithCommas(BazookaManager.Instance.GetGameStoreTotalAntiBerries())); + text.AppendLine("Total Golden Berries: " + Tools.FormatWithCommas(BazookaManager.Instance.GetGameStoreTotalGoldenBerries())); text.AppendLine("Total Attempts: " + Tools.FormatWithCommas(BazookaManager.Instance.GetGameStoreTotalAttepts())); statsText.text = text.ToString(); });