Lint and fix undefined reference error

This commit is contained in:
Oliver 2026-04-29 21:38:07 -06:00
parent fe0a21f0ca
commit a30d68a327
2 changed files with 3 additions and 3 deletions

View file

@ -157,7 +157,7 @@ export class AttributeItemData extends foundry.abstract.TypeDataModel {
return extraContext[key] || fullMatch;
},
);
message.updateSource({ flavor, });
message.updateSource({ flavor });
};
});
};

View file

@ -79,12 +79,12 @@ export class GenericItemData extends foundry.abstract.TypeDataModel {
return extraContext[key] || fullMatch;
},
);
message.updateSource({ flavor, });
message.updateSource({ flavor });
};
});
};
await macro?.execute({ item });
await macro?.execute({ item: this.parent });
};
// #endregion Methods
};