diff --git a/src/module/dialog/party-sheet.js b/src/module/dialog/party-sheet.js index 35dbc0f..341adbc 100644 --- a/src/module/dialog/party-sheet.js +++ b/src/module/dialog/party-sheet.js @@ -55,15 +55,18 @@ export class AcksPartySheet extends FormApplication { _dealXP(ev) { // Grab experience const template = ` -
-
- - -
-
`; - let pcs = this.object.entities.filter((e) => { - return e.getFlag('acks', 'party') && e.data.type == "character"; +
+
+ + +
+
+ `; + + let pcs = this.object.documents.filter((actor) => { + return actor.getFlag('acks', 'party') && actor.data.type == "character"; }); + new Dialog({ title: "Deal Experience", content: template,