cswendrowski/FoundryVTT-mmo-hud

Actors can appear several times in party list

Closed this issue · 1 comments

xdy commented

At least in pf2e. It appears that the same actors are added several times in MMOHUD:_getParty.
I fixed locally by changing MMOHUD.js:151 to:

        let data = [...new Set(party)].map(a => this.systemConverter.translatePartyActor(a));

Good suggestion, thanks!