Make golden berry give you 4 points

This commit is contained in:
2026-02-11 19:34:58 -07:00
parent 445895cc29
commit 97ff3b4e82
2 changed files with 2 additions and 2 deletions

View File

@@ -840,7 +840,7 @@ public class CustomGamePlayer : MonoBehaviour
speedyLeft = 0f;
antiLeft = 0f;
goldenLeft = 10f;
UpdateStats(0);
UpdateStats(4);
}
void DoNothingBerry(GameObject berry)

View File

@@ -870,6 +870,6 @@ public class GamePlayer : MonoBehaviour
speedyLeft = 0f;
antiLeft = 0f;
goldenLeft = 10f;
UpdateStats(0, 0);
UpdateStats(4, 0);
}
}