Merge branch 'master' into equip-items-in-character-sheet

This commit is contained in:
Gesina Schwalbe 2020-12-31 16:52:20 +01:00
commit 5d83e26e81
5 changed files with 42 additions and 21 deletions

View file

@ -26,7 +26,7 @@ export class DS4ItemSheet extends ItemSheet<DS4ItemDataType, DS4Item> {
/** @override */
getData(): ItemSheetData<DS4ItemDataType, DS4Item> {
const data = { ...super.getData(), config: CONFIG.DS4 };
const data = { ...super.getData(), config: CONFIG.DS4, isOwned: this.item.isOwned, actor: this.item.actor };
console.log(data);
return data;
}