diff --git a/Assets/Scripts/Collectible.cs b/Assets/Scripts/Collectible.cs index 09249c4..575e422 100644 --- a/Assets/Scripts/Collectible.cs +++ b/Assets/Scripts/Collectible.cs @@ -18,7 +18,7 @@ public class Collectible : MonoBehaviour void OnTriggerEnter2D(Collider2D other) { Destroy(gameObject); - _player.GetComponent().Score += 10; + _player.GetComponent().Score += 50; _player.GetComponent().Progression += 1; _player.GetComponent().NbVials += 1; }