Everytime I try driving over an object both messages print in the console. Both tags are confirmed to be on the right object and spelled correctly.
void OnTriggerEnter2D(Collider2D other)
{
if (other.tag == "Package");
{
Debug.Log("Package Acquired");
}
if (other.tag == "Customer");
{
Debug.Log("Package Delivered Successfully");
}
}
}