After some investigation for my extensions failing with this error I found that the getActorFromCT function has been depricated and replaced with resolveActor.
Ive replaced it for all my errors with success, even got 5e Enhancer components working
The getActorFromCT affected the versions Im using of "5E Enhancer - Wounds:, 5E Enhancer - Faction Underlays" as well as the one above "AdvancedEffects"
Example of what I changed in the 5E Enhancer Wounds
Example of what I changed in AdvancedEffectsQuote:
--local actor = ActorManager.getActorFromCT(ctEntry);
local actor = ActorManager.resolveActor(ctEntry);
If the Devs of the extentions can review and verify the change then they can update for everyone to download.Quote:
--local msg = ChatManager.createBaseMessage(ActorManager.getActo rFromCT(nodeChar),sUser);
local msg = ChatManager.createBaseMessage(ActorManager.resolve Actor(nodeChar),sUser);

