diff --git a/Assets/scripts/CommonCollectibles.cs b/Assets/scripts/CommonCollectibles.cs index dc1911c..478f2e6 100644 --- a/Assets/scripts/CommonCollectibles.cs +++ b/Assets/scripts/CommonCollectibles.cs @@ -19,13 +19,13 @@ public class CommonCollectibles : MonoBehaviour void OnCollisionEnter(Collision collision) { - Debug.Log("your colliding into me mf"); + Debug.Log("your colliding into me"); Collect(collision.gameObject); } void OnTriggerEnter(Collider other) { - Debug.Log("fuk off trigga"); + Debug.Log(" this is a trigger"); Collect(other.gameObject); } }