Interface won't work

I created a basic interface and added it to some actors, which all do the same stuff.

Then I added an interface event listener to these actors to wait for the call and print “77”.

And finally I added one of the actors to a pawn and then called the interface method after a button press event.

Now when I press my button 32 prints out but 77 doesn’t… why is that the case?

(Using dedicated server btw… that may be the problem?)

Because it’s a child actor component you’ll need to ‘Get Child Actor’ from it and then call the interface function on that rather than on the component itself.