PCG Get Actor Data Destroys Everything On Play

I have a PCG graph in a Blueprint that is set up to Generate on Demand. I can then click Generate when I need to in the editor. Doing so, will cause it to create a set of ISMs as components of the Blueprint, which is exactly what I want. When I click Play, the ISMs remain as components of the Blueprint and I can do further logic on them during play. This is the behavior I want.

But then I needed to reference some tagged meshes in the level, so I added the Get Actor Data node to the PCG graph. This node lets you get points for any actors and such with a specified tag. Works great, except for one big problem. As soon as I click Play now, the ISMs are all automatically destroyed. So, everything that the PCG graph generated in the editor at design time just disappears as soon as I click Play. When I click Stop, it all comes back and reappears. The issue is that PCG is automatically deleting the ISMs for some reason. This only happens when using the Get Actor Data node. If I get rid of that single node, the problem goes away and everything works fine.

So, I guess my questions are, does anyone know why Get Actor Data does this and can I stop it doing this somehow?

I’m aware of the Clear PCGLink button on the PCG graph component. The problem with this button though is it creates a separate “stamp” actor of the ISM components. I need the ISM components to be inside the Blueprint with the PCG graph so I can do further logic with them during play.