finish party members tab

This commit is contained in:
moliloo 2025-08-23 19:45:23 -03:00
parent 9a1ed95c9f
commit 5b7272c2c7
10 changed files with 144 additions and 32 deletions

View file

@ -772,4 +772,14 @@ export default class DhpActor extends Actor {
this.#scrollTextInterval = setInterval(intervalFunc.bind(this), 600);
}
}
/**
* Generate an array of localized tag.
* @returns {string[]} An array of localized tag strings.
*/
_getTags() {
const tags = [];
if (this.system._getTags) tags.push(...this.system._getTags());
return tags;
}
}