Multiple Component Overlap Events

The issue I am having pertains to multiple component’s Overlap Events firing. I have an actor whose root component is a Uboxcomponent. The actor also has 3 uspherecomponents within it as well. The Spherecomponents are not attached to the root component, but are registered with the actor. I have bound an onbeginoverlap event with the Uboxcomponent as well as (within a for loop for simplicity) with each of the sphere components. The Uboxcomponent event points to one function while the spheres’ point to the same function.

The issue arises that when my character collides with the UBoxComponent it triggers the sphere component overlap (strangely enough, just one’s event) as well as it’s own.

I have looked at my code and to my knowledge, nowhere have I parented the UboxComponent to the sphere component, as would explain this behavior.

An interesting bit of knowledge that may or may not have solved the issue. Removing the binding process (OnComponentBeginOverlap.AddDynamic) from the loop that I had it in seemed to solve the immediate issue. As to why that is, I lack the knowledge. Any insight into this would be appreciated.