Function inheritance asking for target (solved)

  • solved, i was using the wrong child function with a similar name

I have blueprint_A (parent )
blueprint_B (child of A)
blueprint_C (child of B)

In blueprint_A i have function1, function2, and function3.
In Blueprint_B i have function3, function4, and function5.

Function5 is using all the other functions.
When i Call function 5 from Blueprint_C it tells me i have to have a"target". why ? it should inherit the function from Blueprint_A and BlueprintB

All functions are public

I’m glad you’ve solved it! Distinct function naming, especially when heavily using inheritance can help avoid this specific issue preemptively.