From 0d754b9af975b9ce734b5c7d52924e8ad71a355a Mon Sep 17 00:00:00 2001 From: Lncvrt Date: Thu, 4 Sep 2025 19:28:05 -0700 Subject: [PATCH] Fix new berries not despawning on reset --- Assets/Scripts/GamePlayer.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Assets/Scripts/GamePlayer.cs b/Assets/Scripts/GamePlayer.cs index b0892a2..773b358 100644 --- a/Assets/Scripts/GamePlayer.cs +++ b/Assets/Scripts/GamePlayer.cs @@ -623,6 +623,8 @@ public class GamePlayer : MonoBehaviour .Concat(GameObject.FindGameObjectsWithTag("UltraBerry")) .Concat(GameObject.FindGameObjectsWithTag("SpeedyBerry")) .Concat(GameObject.FindGameObjectsWithTag("CoinBerry")) + .Concat(GameObject.FindGameObjectsWithTag("RandomBerry")) + .Concat(GameObject.FindGameObjectsWithTag("AntiBerry")) .ToArray(); foreach (GameObject berry in allberries) {