From 15f18a6d77ae364a6fae0ff24b86147a6650f5a6 Mon Sep 17 00:00:00 2001 From: Paul-Louis NECH Date: Fri, 28 Oct 2016 10:42:39 -0400 Subject: [PATCH] Toluene: More points for collecting --- Assets/Scripts/Collectible.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- libgit2 0.27.0