Parenting Problem with Macro Libraries

I’m having problems finding my macros I’ve created in a macro library from within the parented class.

MyClass(Parent=Pawn)

MyClass MacroLibrary (Parent=MyClass)

MyClass can’t see macros in MyClass MacroLibrary.

What am I missing here? The macro library’s ‘Parent Class’ is pointing to MyClass… I’ve searched and have yet to find an answer to this. Is there a bug with inherited classes???

Met this problem too, guess it’s just the mechanism of macro library

I think macros are not inherited from parent classes unfortunately. The fact there is no Access Specifiers on macros (public/private/etc.) hints towards the fact that macros are not taken into account in the inheritance mechanism.